aerogramme/Cargo.toml

58 lines
2.1 KiB
TOML
Raw Normal View History

2022-05-18 10:24:37 +00:00
[package]
name = "aerogramme"
2022-05-18 10:24:37 +00:00
version = "0.0.1"
authors = ["Alex Auvolat <alex@adnab.me>"]
edition = "2021"
license = "AGPL-3.0"
description = "Encrypted mail storage over Garage"
[dependencies]
anyhow = "1.0.28"
argon2 = "0.3"
2022-05-19 10:10:48 +00:00
async-trait = "0.1"
2022-07-15 14:15:48 +00:00
backtrace = "0.3"
base64 = "0.13"
2022-05-19 13:14:36 +00:00
clap = { version = "3.1.18", features = ["derive", "env"] }
2022-05-31 15:07:34 +00:00
duplexify = "1.1.0"
2022-05-18 10:24:37 +00:00
hex = "0.4"
2022-05-31 15:07:34 +00:00
futures = "0.3"
2022-05-18 10:24:37 +00:00
im = "15"
itertools = "0.10"
lazy_static = "1.4"
2022-05-23 16:19:33 +00:00
ldap3 = { version = "0.10", default-features = false, features = ["tls"] }
log = "0.4"
2023-03-09 09:23:40 +00:00
mail-parser = "0.8.2"
2022-05-18 10:24:37 +00:00
rusoto_core = "0.48.0"
rusoto_credential = "0.48.0"
rusoto_s3 = "0.48"
rusoto_signature = "0.48.0"
serde = "1.0.137"
rand = "0.8.5"
rmp-serde = "0.15"
2022-05-19 13:14:36 +00:00
rpassword = "6.0"
2022-05-18 10:24:37 +00:00
sodiumoxide = "0.2"
2022-05-31 15:07:34 +00:00
tokio = { version = "1.18", default-features = false, features = ["rt", "rt-multi-thread", "io-util", "net", "time", "macros", "sync", "signal", "fs"] }
tokio-util = { version = "0.7", features = [ "compat" ] }
2022-05-19 10:10:48 +00:00
toml = "0.5"
2022-05-18 10:24:37 +00:00
zstd = { version = "0.9", default-features = false }
2022-06-01 16:00:56 +00:00
tracing-subscriber = "0.3"
tracing = "0.1"
tower = "0.4"
2022-06-30 13:22:25 +00:00
imap-codec = { git = "https://github.com/superboum/imap-codec.git", branch = "v0.5.x" }
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
2022-06-01 16:00:56 +00:00
2022-05-25 11:07:19 +00:00
k2v-client = { git = "https://git.deuxfleurs.fr/Deuxfleurs/garage.git", branch = "main" }
2022-06-30 13:22:25 +00:00
boitalettres = { git = "https://git.deuxfleurs.fr/quentin/boitalettres.git", branch = "expose-mydatetime" }
2022-05-31 15:07:34 +00:00
smtp-message = { git = "http://github.com/Alexis211/kannader", branch = "feature/lmtp" }
smtp-server = { git = "http://github.com/Alexis211/kannader", branch = "feature/lmtp" }
2022-05-30 09:50:07 +00:00
2022-05-20 19:35:50 +00:00
#k2v-client = { path = "../garage/src/k2v-client" }
2022-07-20 10:32:58 +00:00
[dev-dependencies]
2022-07-20 13:14:34 +00:00
#mail-parser-05 = { package = "mail-parser", version = "0.5" }
2022-07-20 10:32:58 +00:00
mail-parser-main = { package = "mail-parser", git = "https://github.com/stalwartlabs/mail-parser", branch = "main" }
mail-parser-superboum = { package = "mail-parser", git = "https://github.com/superboum/mail-parser", branch = "feature/no_decode" }
mail-parser-db61a03 = { package = "mail-parser", git = "https://github.com/superboum/mail-parser", rev = "db61a03" }