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

20 lines
550 B
TOML
Raw Normal View History

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