2023-04-04 21:12:46 +08:00
|
|
|
[package]
|
2023-04-06 00:05:21 +08:00
|
|
|
name = "protocol"
|
2023-04-04 21:12:46 +08:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-04-06 00:05:21 +08:00
|
|
|
store = { path = "../store" }
|
2023-04-04 21:12:46 +08:00
|
|
|
utils = { path = "/home/vagrant/code/utils" }
|
2023-04-06 00:05:21 +08:00
|
|
|
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", 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"]}
|
|
|
|
ahash = { version = "0.8.0", features = ["serde"] }
|
|
|
|
serde_json = { version = "1.0", features = ["raw_value"] }
|