panorama/daemon/Cargo.toml
Michael Zhang 3f09e8b55f
updates:
- reformat with 80char
- add SQLx to daemon
- add backtrace to anyhow
2021-10-13 00:50:48 -05:00

26 lines
729 B
TOML

[package]
name = "panorama-daemon"
version = "0.0.1"
edition = "2018"
[dependencies]
anyhow = { version = "1.0.42", features = ["backtrace"] }
async-trait = "0.1.50"
clap = "3.0.0-beta.2"
derivative = "2.2.0"
futures = "0.3.16"
hyper = { version = "0.14.11", features = ["server", "http2", "stream"] }
inotify = { version = "0.9.3", features = ["stream"] }
log = "0.4.14"
panorama-imap = { path = "../imap" }
panorama-smtp = { path = "../smtp" }
serde = { version = "1.0.126", features = ["derive"] }
stderrlog = "0.5.1"
tokio = { version = "1.9.0", features = ["full"] }
tokio-rustls = "0.22.0"
toml = "0.5.8"
xdg = "2.2.0"
[dependencies.sqlx]
version = "0.5.9"
features = ["runtime-tokio-rustls", "sqlite", "json", "chrono"]