mail-server/crates/jmap-proto/Cargo.toml

20 lines
535 B
TOML
Raw Normal View History

2023-04-04 21:12:46 +08:00
[package]
2023-04-14 15:04:36 +08:00
name = "jmap_proto"
2023-04-04 21:12:46 +08:00
version = "0.1.0"
edition = "2021"
2023-04-20 00:55:37 +08:00
resolver = "2"
2023-04-04 21:12:46 +08:00
[dependencies]
2023-04-06 00:05:21 +08:00
store = { path = "../store" }
2023-04-14 15:04:36 +08:00
utils = { path = "../utils" }
2024-07-12 00:44:51 +08:00
trc = { path = "../trc" }
2023-12-28 18:57:21 +08:00
mail-parser = { version = "0.9", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
2023-04-04 21:12:46 +08:00
fast-float = "0.2.0"
serde = { version = "1.0", features = ["derive"]}
2024-06-21 23:05:14 +08:00
ahash = { version = "0.8.2", features = ["serde"] }
2023-04-04 21:12:46 +08:00
serde_json = { version = "1.0", features = ["raw_value"] }
2024-07-26 02:35:13 +08:00
2023-06-10 02:28:01 +08:00
[dev-dependencies]
tokio = { version = "1.23", features = ["full"] }