aerogramme/Cargo.toml

80 lines
2.3 KiB
TOML
Raw Normal View History

2022-05-18 12:24:37 +02:00
[package]
name = "aerogramme"
2024-02-08 19:41:40 +01:00
version = "0.2.1"
2023-07-25 21:24:23 +02:00
authors = ["Alex Auvolat <alex@adnab.me>", "Quentin Dufour <quentin@dufour.io>"]
2022-05-18 12:24:37 +02:00
edition = "2021"
license = "EUPL-1.2"
description = "A robust email server"
2022-05-18 12:24:37 +02:00
[dependencies]
2023-12-30 11:23:10 +01: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 16:15:48 +02:00
backtrace = "0.3"
2024-01-24 15:21:55 +01:00
console-subscriber = "0.2"
2023-12-30 11:23:10 +01:00
tracing-subscriber = "0.3"
tracing = "0.1"
# language extensions
lazy_static = "1.4"
2022-05-31 17:07:34 +02:00
duplexify = "1.1.0"
2022-05-18 12:24:37 +02:00
im = "15"
2023-12-30 11:23:10 +01:00
anyhow = "1.0.28"
async-trait = "0.1"
itertools = "0.10"
2023-12-30 11:23:10 +01:00
chrono = { version = "0.4", default-features = false, features = ["alloc"] }
# process related
2023-12-14 15:36:54 +01:00
nix = { version = "0.27", features = ["signal"] }
2023-12-30 11:23:10 +01:00
clap = { version = "3.1.18", features = ["derive", "env"] }
# serialization & parsing
2022-05-18 12:24:37 +02:00
serde = "1.0.137"
rmp-serde = "0.15"
2022-05-19 12:10:48 +02:00
toml = "0.5"
2023-12-30 11:23:10 +01:00
base64 = "0.21"
hex = "0.4"
nom = "7.1"
2022-05-18 12:24:37 +02:00
zstd = { version = "0.9", default-features = false }
2023-12-30 11:23:10 +01:00
# cryptography & security
sodiumoxide = "0.2"
argon2 = "0.5"
rand = "0.8.5"
2024-01-23 16:14:58 +01:00
rustls = "0.22"
rustls-pemfile = "2.0"
tokio-rustls = "0.25"
2023-12-30 11:23:10 +01:00
hyper-rustls = { version = "0.24", features = ["http2"] }
rpassword = "7.0"
2022-06-30 15:22:25 +02:00
2023-12-30 11:23:10 +01:00
# login
ldap3 = { version = "0.10", default-features = false, features = ["tls-rustls"] }
2022-06-01 18:00:56 +02:00
2023-12-30 11:23:10 +01:00
# storage
2024-01-30 17:34:16 +01:00
k2v-client = { git = "https://git.deuxfleurs.fr/Deuxfleurs/garage.git", tag = "v0.9.1" }
2023-12-30 11:23:10 +01:00
aws-config = { version = "1.1.1", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.9.0"
# email protocols
2024-01-25 11:35:33 +01:00
eml-codec = "0.1.2"
2022-05-31 17:07:34 +02:00
smtp-message = { git = "http://github.com/Alexis211/kannader", branch = "feature/lmtp" }
smtp-server = { git = "http://github.com/Alexis211/kannader", branch = "feature/lmtp" }
2024-01-10 14:45:36 +01:00
imap-codec = { version = "2.0.0", features = ["bounded-static", "ext_condstore_qresync"] }
imap-flow = { git = "https://github.com/superboum/imap-flow.git", branch = "custom/aerogramme" }
thiserror = "1.0.56"
2022-07-20 12:32:58 +02:00
[dev-dependencies]
2023-12-30 11:23:10 +01:00
[patch.crates-io]
2024-01-10 14:45:36 +01:00
imap-types = { git = "https://github.com/superboum/imap-codec", branch = "custom/aerogramme" }
imap-codec = { git = "https://github.com/superboum/imap-codec", branch = "custom/aerogramme" }
2023-12-30 11:23:10 +01:00
2023-12-28 16:37:38 +01:00
[[test]]
name = "behavior"
path = "tests/behavior.rs"
2024-01-03 15:21:51 +01:00
harness = false