36 lines
838 B
TOML
36 lines
838 B
TOML
[package]
|
|
name = "panorama"
|
|
version = "0.1.0"
|
|
authors = ["Michael Zhang <mail@mzhang.io>"]
|
|
edition = "2018"
|
|
description = "A customizable personal information manager."
|
|
repository = "https://git.mzhang.io/michael/panorama"
|
|
readme = "README.md"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[workspace]
|
|
members = ["imap"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.38"
|
|
async-trait = "0.1.42"
|
|
cfg-if = "1.0.0"
|
|
chrono = "0.4.19"
|
|
crossterm = "0.19.0"
|
|
fern = "0.6.0"
|
|
futures = "0.3.12"
|
|
lettre = "0.9.5"
|
|
log = "0.4.14"
|
|
notify = "4.0.15"
|
|
pin-project = "1.0.4"
|
|
rustls-connector = "0.13.1"
|
|
tokio = { version = "1.1.1", features = ["full"] }
|
|
tokio-rustls = "0.22.0"
|
|
tokio-util = { version = "0.6.3", features = ["full"] }
|
|
webpki-roots = "0.21.0"
|
|
xdg = "2.2.0"
|
|
|
|
imap = { path = "imap" }
|
|
toml = "0.5.8"
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
structopt = "0.3.21"
|