panorama/daemon/Cargo.toml

23 lines
586 B
TOML
Raw Normal View History

2021-07-30 01:17:14 +00:00
[package]
2021-07-30 03:47:53 +00:00
name = "panorama-daemon"
2021-08-09 22:10:19 +00:00
version = "0.0.1"
2021-07-30 01:17:14 +00:00
edition = "2018"
[dependencies]
anyhow = "1.0.42"
2021-08-06 02:26:39 +00:00
async-trait = "0.1.50"
2021-07-30 01:17:14 +00:00
clap = "3.0.0-beta.2"
2021-08-23 00:19:27 +00:00
derivative = "2.2.0"
2021-07-30 01:17:14 +00:00
futures = "0.3.16"
2021-08-06 02:26:39 +00:00
hyper = { version = "0.14.11", features = ["server", "http2", "stream"] }
2021-07-30 01:17:14 +00:00
inotify = { version = "0.9.3", features = ["stream"] }
2021-07-30 03:47:53 +00:00
log = "0.4.14"
2021-08-09 11:50:19 +00:00
panorama-imap = { path = "../imap" }
2021-08-09 22:10:19 +00:00
panorama-smtp = { path = "../smtp" }
2021-08-06 02:26:39 +00:00
serde = { version = "1.0.126", features = ["derive"] }
2021-07-30 03:47:53 +00:00
stderrlog = "0.5.1"
2021-08-06 02:26:39 +00:00
tokio = { version = "1.9.0", features = ["full"] }
tokio-rustls = "0.22.0"
toml = "0.5.8"
2021-08-09 11:56:32 +00:00
xdg = "2.2.0"