panorama/daemon/Cargo.toml

32 lines
789 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"
2021-10-25 23:42:14 +00:00
[features]
default = ["config-watch"]
config-watch = ["notify"]
2021-07-30 01:17:14 +00:00
[dependencies]
anyhow = { version = "1.0.42", features = ["backtrace"] }
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 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"
2021-10-25 23:42:14 +00:00
notify = { version = "4.0.17", optional = true }
[dependencies.sqlx]
version = "0.5.9"
features = ["runtime-tokio-rustls", "sqlite", "json", "chrono"]