panorama/Cargo.toml

44 lines
1.1 KiB
TOML
Raw Normal View History

2021-02-12 08:12:43 +00:00
[package]
name = "panorama"
2021-02-14 12:27:48 +00:00
version = "0.0.1"
2021-02-12 08:12:43 +00:00
authors = ["Michael Zhang <mail@mzhang.io>"]
edition = "2018"
2021-02-12 13:52:46 +00:00
description = "A customizable personal information manager."
repository = "https://git.mzhang.io/michael/panorama"
readme = "README.md"
license = "GPL-3.0-or-later"
2021-02-12 08:12:43 +00:00
2021-02-12 12:32:17 +00:00
[workspace]
members = ["imap"]
2021-02-12 08:12:43 +00:00
[dependencies]
# log = "0.4.14"
# fern = "0.6.0"
2021-02-12 08:12:43 +00:00
anyhow = "1.0.38"
async-trait = "0.1.42"
cfg-if = "1.0.0"
chrono = "0.4.19"
crossterm = "0.19.0"
futures = "0.3.12"
inotify = { version = "0.9.2", features = ["stream"] }
2021-02-12 08:12:43 +00:00
lettre = "0.9.5"
panorama-imap = { path = "imap", version = "0" }
2021-02-16 21:33:36 +00:00
parking_lot = "0.11.1"
2021-02-12 08:12:43 +00:00
pin-project = "1.0.4"
2021-02-12 12:32:17 +00:00
rustls-connector = "0.13.1"
serde = { version = "1.0.123", features = ["derive"] }
structopt = "0.3.21"
2021-02-12 08:12:43 +00:00
tokio = { version = "1.1.1", features = ["full"] }
tokio-rustls = "0.22.0"
tokio-stream = { version = "0.1.3", features = ["sync"] }
2021-02-12 08:12:43 +00:00
tokio-util = { version = "0.6.3", features = ["full"] }
toml = "0.5.8"
2021-02-16 10:45:41 +00:00
tracing = "0.1.23"
tracing-appender = "0.1.2"
tracing-subscriber = "0.2.15"
webpki-roots = "0.21.0"
xdg = "2.2.0"
2021-02-15 10:36:06 +00:00
[features]
clippy = []