mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2024-11-16 06:14:39 +08:00
16 lines
441 B
TOML
16 lines
441 B
TOML
[package]
|
|
name = "imap_proto"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
jmap_proto = { path = "../jmap-proto" }
|
|
store = { path = "../store", features = ["sqlite"] }
|
|
mail-parser = { version = "0.9", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
|
|
ahash = { version = "0.8" }
|
|
chrono = { version = "0.4"}
|
|
trc = { path = "../trc" }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.23", features = ["full"] }
|