Files
bichon/Cargo.toml
T

100 lines
2.3 KiB
TOML
Raw Permalink Normal View History

[workspace]
members = [
"crates/memdb",
"crates/core",
"crates/blob",
"crates/server",
"crates/cli",
"crates/admin",
2026-05-24 02:27:52 +08:00
"crates/smtp",
]
resolver = "2"
[workspace.package]
2026-07-31 22:50:46 +08:00
version = "2.0.1-alpha.1"
2025-11-19 02:14:37 +08:00
edition = "2021"
[workspace.dependencies]
chrono = "0.4.45"
2026-04-21 18:15:54 +08:00
clap = { version = "4.6.1", features = ["derive", "env"] }
bichon-memdb = { path = "crates/memdb" }
bichon-blob = { path = "crates/blob" }
2026-06-26 19:15:46 +08:00
itertools = "0.15.0"
2025-11-19 02:14:37 +08:00
ring = { version = "0.17.14", features = ["std"] }
serde = { version = "1.0.228", features = ["derive"] }
2026-05-24 02:27:52 +08:00
serde_json = "1.0.150"
tokio = { version = "1.52.3", features = ["full"] }
2025-12-31 22:57:31 +08:00
tracing = "0.1.44"
2025-11-19 02:14:37 +08:00
tracing-appender = "0.2.3"
2026-03-17 11:39:02 +08:00
tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] }
2025-11-19 02:14:37 +08:00
base64 = "0.22.1"
snafu = "0.9.1"
2025-11-19 02:14:37 +08:00
reqwest = { version = "0.12.24", default-features = false, features = [
"json",
"stream",
2025-11-26 09:21:42 +08:00
#"native-tls",
"rustls-tls",
2025-11-19 02:14:37 +08:00
"blocking",
"socks",
] }
tokio-socks = "0.5.3"
http = "1.4.2"
2026-07-13 00:04:53 +08:00
regex = "1.13"
2025-11-19 02:14:37 +08:00
email_address = "0.2.9"
futures = "0.3.32"
2025-11-19 02:14:37 +08:00
utf7-imap = "0.3.2"
2026-07-13 00:04:53 +08:00
mail-parser = { version = '0.11', features = ["serde"] }
2025-11-27 01:27:16 +08:00
# mail-send = "0.5.2"
2025-11-19 02:14:37 +08:00
tokio-rustls = { version = "0.26.4", default-features = false, features = [
"ring",
"tls12",
] }
2026-07-08 23:55:05 +08:00
timeago = "0.6.1"
2025-11-19 02:14:37 +08:00
oauth2 = { version = "5.0.0", features = ["reqwest-blocking"] }
url = { version = "2.5.8", features = ["serde"] }
2026-07-13 00:04:53 +08:00
sysinfo = "0.39"
2025-11-19 02:14:37 +08:00
num_cpus = "1.17.0"
2026-07-08 23:55:05 +08:00
rand = "0.10.2"
2025-11-19 02:14:37 +08:00
encoding_rs = "0.8.35"
2026-06-26 19:15:46 +08:00
webpki-roots = "1.0.8"
rustls = { version = "0.23.41", default-features = false, features = ["ring"] }
2026-07-08 23:55:05 +08:00
rustls-pki-types = "1.15.0"
2025-11-19 02:14:37 +08:00
tokio-io-timeout = "1.2.1"
2026-04-05 16:06:07 +08:00
semver = "1.0.28"
2025-12-31 22:57:31 +08:00
governor = "0.10.4"
2026-07-13 00:04:53 +08:00
lru = "0.18.1"
2025-11-19 02:14:37 +08:00
mime_guess = "2.0.5"
hex = "0.4.3"
2026-07-08 23:55:05 +08:00
time = { version = "0.3.53", features = [
2025-11-19 02:14:37 +08:00
"formatting",
"parsing",
"local-offset",
] }
2026-07-13 00:04:53 +08:00
rust-embed = "8.12"
2025-11-19 02:14:37 +08:00
murmur3 = "0.5.2"
urlencoding = "2.1.3"
dashmap = "6.2.1"
2025-11-19 02:14:37 +08:00
gethostname = "1.1.0"
itoa = "1.0.18"
2026-04-21 18:15:54 +08:00
html2text = "0.17.1"
2026-07-13 00:04:53 +08:00
bytes = "1.12"
dialoguer = "0.12.0"
2026-07-08 23:55:05 +08:00
console = "0.16.4"
mail-send = "0.6.1"
rcgen = "0.14.8"
rustls-pemfile = "2.2.0"
blake3 = "1.8.5"
2026-06-26 19:15:46 +08:00
uuid = { version = "1.23.4", features = ["v4", "serde"] }
2026-07-08 23:55:05 +08:00
fjall = { version = "3.1.6", features = ["lz4", "metrics", "bytes_1"] }
tracing-log = "0.2.0"
tokio-util = "0.7.18"
2026-07-08 23:55:05 +08:00
indicatif = "0.18.6"
[profile.release]
strip = true
lto = true
opt-level = 3
codegen-units = 1