summaryrefslogtreecommitdiff
path: root/crates/trc/Cargo.toml
blob: 2621ce50e904a2b5bf8f02b96967f69c30698b40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "trc"
version = "0.10.1"
edition = "2021"
resolver = "2"

[dependencies]
event_macro = { path = "./event-macro" }
mail-auth = { version = "0.5" }
mail-parser = { version = "0.9", features = ["full_encoding", "ludicrous_mode"] } 
base64 = "0.22.1"
serde = "1.0"
serde_json = "1.0.120"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls-webpki-roots", "http2"]}
bincode = "1.3.3"
rtrb = "0.3.1"
parking_lot = "0.12.3"
tokio = { version = "1.23", features = ["net", "macros"] }
ahash = "0.8.11"

[features]
test_mode = []

[dev-dependencies]