panorama/daemon/Cargo.toml
2021-11-04 06:30:35 -05:00

33 lines
849 B
TOML

[package]
name = "panorama-daemon"
version = "0.0.1"
edition = "2018"
license = "GPL-3.0-or-later"
[features]
default = ["config-watch"]
config-watch = ["notify"]
[dependencies]
anyhow = { version = "1.0.45", features = ["backtrace"] }
async-trait = "0.1.51"
clap = "3.0.0-beta.5"
derivative = "2.2.0"
futures = "0.3.17"
hyper = { version = "0.14.14", features = ["server", "http2", "stream"] }
log = "0.4.14"
panorama-imap = { path = "../imap" }
panorama-smtp = { path = "../smtp" }
serde = { version = "1.0.130", features = ["derive"] }
session_types = "0.3.1"
stderrlog = "0.5.1"
tokio = { version = "1.13.0", features = ["full"] }
tokio-rustls = "0.23.1"
toml = "0.5.8"
xdg = "2.4.0"
notify = { version = "5.0.0-pre.13", optional = true }
[dependencies.sqlx]
version = "0.5.9"
features = ["runtime-tokio-rustls", "sqlite", "json", "chrono"]