panorama/daemon/Cargo.toml

33 lines
825 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-28 22:30:25 +00:00
license = "GPL-3.0-or-later"
2021-07-30 01:17:14 +00:00
2021-10-25 23:42:14 +00:00
[features]
default = ["config-watch"]
config-watch = ["notify"]
2021-07-30 01:17:14 +00:00
[dependencies]
2021-10-28 22:30:25 +00:00
anyhow = { version = "1.0.44", features = ["backtrace"] }
async-trait = "0.1.51"
clap = "3.0.0-beta.5"
2021-08-23 00:19:27 +00:00
derivative = "2.2.0"
2021-10-28 22:30:25 +00:00
futures = "0.3.17"
hyper = { version = "0.14.14", 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-10-28 22:30:25 +00:00
serde = { version = "1.0.130", features = ["derive"] }
2021-07-30 03:47:53 +00:00
stderrlog = "0.5.1"
2021-10-28 22:30:25 +00:00
tokio = { version = "1.12.0", features = ["full"] }
tokio-rustls = "0.23.0"
2021-08-06 02:26:39 +00:00
toml = "0.5.8"
2021-10-28 22:30:25 +00:00
xdg = "2.4.0"
2021-10-28 22:30:25 +00:00
notify = { version = "5.0.0-pre.13", optional = true }
2021-10-25 23:42:14 +00:00
[dependencies.sqlx]
version = "0.5.9"
features = ["runtime-tokio-rustls", "sqlite", "json", "chrono"]