2023-05-31 01:27:54 +08:00
|
|
|
[package]
|
|
|
|
name = "directory"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-06-01 02:03:04 +08:00
|
|
|
utils = { path = "../utils" }
|
2023-05-31 01:27:54 +08:00
|
|
|
smtp-proto = { git = "https://github.com/stalwartlabs/smtp-proto" }
|
2023-06-02 01:08:48 +08:00
|
|
|
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
|
2023-05-31 01:27:54 +08:00
|
|
|
mail-send = { git = "https://github.com/stalwartlabs/mail-send", default-features = false, features = ["cram-md5", "skip-ehlo"] }
|
2023-06-02 01:08:48 +08:00
|
|
|
mail-builder = { git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] }
|
2023-09-28 00:48:30 +08:00
|
|
|
sieve-rs = { git = "https://github.com/stalwartlabs/sieve" }
|
2023-05-31 01:27:54 +08:00
|
|
|
tokio = { version = "1.23", features = ["net"] }
|
|
|
|
tokio-rustls = { version = "0.24.0"}
|
|
|
|
rustls = "0.21.0"
|
2023-07-06 01:34:57 +08:00
|
|
|
sqlx = { version = "0.7", features = [ "runtime-tokio-rustls", "postgres", "mysql", "sqlite" ] }
|
2023-05-31 01:27:54 +08:00
|
|
|
ldap3 = { version = "0.11.1", default-features = false, features = ["tls-rustls"] }
|
2023-06-01 02:03:04 +08:00
|
|
|
bb8 = "0.8.1"
|
2023-06-02 17:03:30 +08:00
|
|
|
parking_lot = "0.12"
|
2023-05-31 01:27:54 +08:00
|
|
|
async-trait = "0.1.68"
|
|
|
|
ahash = { version = "0.8" }
|
|
|
|
tracing = "0.1"
|
2023-06-01 02:03:04 +08:00
|
|
|
lru-cache = "0.1.2"
|
2023-06-02 01:08:48 +08:00
|
|
|
pwhash = "1"
|
|
|
|
password-hash = "0.5.0"
|
|
|
|
argon2 = "0.5.0"
|
|
|
|
pbkdf2 = {version = "0.12.1", features = ["simple"] }
|
|
|
|
scrypt = "0.11.0"
|
|
|
|
sha1 = "0.10.5"
|
|
|
|
sha2 = "0.10.6"
|
|
|
|
md5 = "0.7.0"
|
2023-07-24 17:48:23 +08:00
|
|
|
futures = "0.3"
|
2023-07-28 02:18:34 +08:00
|
|
|
regex = "1.7.0"
|
2023-09-28 00:48:30 +08:00
|
|
|
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-webpki-roots", "blocking"] }
|
|
|
|
flate2 = "1.0"
|
2023-05-31 01:27:54 +08:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
tokio = { version = "1.23", features = ["full"] }
|