panorama/Cargo.toml

65 lines
1.5 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]
2021-03-20 08:22:28 +00:00
members = [
"imap",
"smtp",
"tui",
2021-03-20 08:22:28 +00:00
]
2021-02-12 12:32:17 +00:00
2021-02-12 08:12:43 +00:00
[dependencies]
# tantivy = "0.14.0"
2021-03-20 08:22:28 +00:00
anyhow = "1.0.39"
2021-03-09 09:12:07 +00:00
async-trait = "0.1.48"
2021-02-12 08:12:43 +00:00
cfg-if = "1.0.0"
chrono = "0.4.19"
2021-03-10 09:44:31 +00:00
chrono-humanize = "0.1.2"
downcast-rs = "1.2.0"
2021-02-22 07:37:19 +00:00
fern = { version = "0.6.0", features = ["colored"] }
2021-03-09 09:12:07 +00:00
format-bytes = "0.2.2"
2021-02-24 10:01:18 +00:00
futures = "0.3.13"
2021-03-10 09:44:31 +00:00
gluon = "0.17.2"
hex = "0.4.3"
inotify = { version = "0.9.2", features = ["stream"] }
2021-02-22 07:37:19 +00:00
log = "0.4.14"
mailparse = "0.13.2"
2021-03-09 09:12:07 +00:00
notify-rust = { version = "4.3.0", default-features = false, features = ["z"] }
panorama-tui = { path = "tui" }
2021-02-16 21:33:36 +00:00
parking_lot = "0.11.1"
quoted_printable = "0.4.2"
2021-03-09 09:12:07 +00:00
serde = { version = "1.0.124", features = ["derive"] }
sha2 = "0.9.3"
shellexpand = "2.1.0"
sqlx = { version = "0.5.1", features = ["runtime-tokio-rustls", "sqlite"] }
structopt = "0.3.21"
2021-03-20 07:53:40 +00:00
tokio = { version = "1.3.0", features = ["full"] }
2021-02-12 08:12:43 +00:00
tokio-rustls = "0.22.0"
2021-03-20 07:53:40 +00:00
tokio-stream = { version = "0.1.4", features = ["sync"] }
tokio-util = { version = "0.6.4", features = ["full"] }
toml = "0.5.8"
webpki-roots = "0.21.0"
xdg = "2.2.0"
2021-02-15 10:36:06 +00:00
2021-02-24 12:43:50 +00:00
[dependencies.panorama-imap]
path = "imap"
version = "0"
features = ["rfc2177-idle"]
2021-02-24 12:50:27 +00:00
[dependencies.panorama-smtp]
path = "smtp"
version = "0"
2021-02-15 10:36:06 +00:00
[features]
clippy = []
2021-03-20 09:37:58 +00:00
[package.metadata.deb]
depends = "$auto"