2022-05-18 10:24:37 +00:00
|
|
|
[package]
|
2022-06-30 08:50:03 +00:00
|
|
|
name = "aerogramme"
|
2023-07-25 19:24:23 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Alex Auvolat <alex@adnab.me>", "Quentin Dufour <quentin@dufour.io>"]
|
2022-05-18 10:24:37 +00:00
|
|
|
edition = "2021"
|
|
|
|
license = "AGPL-3.0"
|
|
|
|
description = "Encrypted mail storage over Garage"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-12-30 10:23:10 +00:00
|
|
|
# async runtime
|
|
|
|
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" ] }
|
|
|
|
futures = "0.3"
|
|
|
|
|
|
|
|
# debug
|
|
|
|
log = "0.4"
|
2022-07-15 14:15:48 +00:00
|
|
|
backtrace = "0.3"
|
2023-12-30 10:23:10 +00:00
|
|
|
tracing-subscriber = "0.3"
|
|
|
|
tracing = "0.1"
|
|
|
|
|
|
|
|
# language extensions
|
|
|
|
lazy_static = "1.4"
|
2022-05-31 15:07:34 +00:00
|
|
|
duplexify = "1.1.0"
|
2022-05-18 10:24:37 +00:00
|
|
|
im = "15"
|
2023-12-30 10:23:10 +00:00
|
|
|
anyhow = "1.0.28"
|
|
|
|
async-trait = "0.1"
|
2022-05-18 12:54:48 +00:00
|
|
|
itertools = "0.10"
|
2023-12-30 10:23:10 +00:00
|
|
|
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
|
|
|
|
|
|
|
|
# process related
|
2023-12-14 14:36:54 +00:00
|
|
|
nix = { version = "0.27", features = ["signal"] }
|
2023-12-30 10:23:10 +00:00
|
|
|
clap = { version = "3.1.18", features = ["derive", "env"] }
|
|
|
|
|
|
|
|
# serialization
|
2022-05-18 10:24:37 +00:00
|
|
|
serde = "1.0.137"
|
|
|
|
rmp-serde = "0.15"
|
2022-05-19 10:10:48 +00:00
|
|
|
toml = "0.5"
|
2023-12-30 10:23:10 +00:00
|
|
|
base64 = "0.21"
|
|
|
|
hex = "0.4"
|
2022-05-18 10:24:37 +00:00
|
|
|
zstd = { version = "0.9", default-features = false }
|
|
|
|
|
2023-12-30 10:23:10 +00:00
|
|
|
# cryptography & security
|
|
|
|
sodiumoxide = "0.2"
|
|
|
|
argon2 = "0.5"
|
|
|
|
rand = "0.8.5"
|
|
|
|
hyper-rustls = { version = "0.24", features = ["http2"] }
|
|
|
|
rpassword = "7.0"
|
2022-06-30 13:22:25 +00:00
|
|
|
|
2023-12-30 10:23:10 +00:00
|
|
|
# login
|
|
|
|
ldap3 = { version = "0.10", default-features = false, features = ["tls-rustls"] }
|
2022-06-01 16:00:56 +00:00
|
|
|
|
2023-12-30 10:23:10 +00:00
|
|
|
# storage
|
2023-12-22 20:52:20 +00:00
|
|
|
k2v-client = { git = "https://git.deuxfleurs.fr/Deuxfleurs/garage.git", tag = "v0.9.0" }
|
2023-12-30 10:23:10 +00:00
|
|
|
aws-config = { version = "1.1.1", features = ["behavior-version-latest"] }
|
|
|
|
aws-sdk-s3 = "1.9.0"
|
|
|
|
|
|
|
|
# email protocols
|
|
|
|
eml-codec = { git = "https://git.deuxfleurs.fr/Deuxfleurs/eml-codec.git", branch = "main" }
|
2022-05-31 15:07:34 +00:00
|
|
|
smtp-message = { git = "http://github.com/Alexis211/kannader", branch = "feature/lmtp" }
|
2022-05-31 13:49:10 +00:00
|
|
|
smtp-server = { git = "http://github.com/Alexis211/kannader", branch = "feature/lmtp" }
|
2023-12-30 10:23:10 +00:00
|
|
|
imap-codec = { version = "1.0.0", features = ["quirk_crlf_relaxed", "bounded-static"] }
|
|
|
|
imap-flow = { git = "https://github.com/duesee/imap-flow.git", rev = "e45ce7bb6ab6bda3c71a0c7b05e9b558a5902e90" }
|
2022-07-20 10:32:58 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-07-25 08:59:48 +00:00
|
|
|
|
2023-12-30 10:23:10 +00:00
|
|
|
[patch.crates-io]
|
|
|
|
imap-types = { git = "https://github.com/duesee/imap-codec", branch = "v2" }
|
|
|
|
imap-codec = { git = "https://github.com/duesee/imap-codec", branch = "v2" }
|
|
|
|
|
2023-12-28 15:37:38 +00:00
|
|
|
[[test]]
|
|
|
|
name = "imap_features"
|
|
|
|
path = "tests/imap_features.rs"
|
|
|
|
harness = false
|