sute/Cargo.toml

38 lines
633 B
TOML
Raw Permalink Normal View History

2020-10-29 13:14:39 +01:00
[package]
name = "sute"
version = "0.1.0"
authors = ["Gregor Reitzenstein <me@dequbed.space>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = { version = "0.3", features = ["thread-pool"] }
futures-util = "0.3"
futures-signals = "0.3"
capnp = "0.13"
capnp-rpc = "0.13"
capnp-futures = "0.13"
uuid = "0.8"
tui = "0.11"
termion = "1.5"
2020-11-03 20:17:06 +01:00
clap = "3.0.0-beta.2"
2020-10-29 13:14:39 +01:00
smol = "1.2"
signal-hook = "0.1"
2020-11-04 13:07:31 +01:00
slog = { version = "2.5", features = ["max_level_debug"] }
2020-10-30 16:32:20 +01:00
2020-10-29 13:14:39 +01:00
libc = "0.2"
2020-11-02 14:56:45 +01:00
rsasl = "0.2.3"
2020-10-29 13:14:39 +01:00
2020-11-19 09:42:19 +01:00
anyhow = "1.0"
2020-11-03 11:45:48 +01:00
2020-10-29 13:14:39 +01:00
[build-dependencies]
capnpc = "0.13"