mirror of
https://github.com/stalwartlabs/mail-server.git
synced 2025-09-09 21:44:24 +08:00
14 lines
562 B
TOML
14 lines
562 B
TOML
[package]
|
|
name = "core"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
store = { path = "../store" }
|
|
protocol = { path = "../protocol" }
|
|
utils = { path = "/home/vagrant/code/utils" }
|
|
mail-parser = { git = "https://github.com/stalwartlabs/mail-parser", features = ["full_encoding", "serde_support", "ludicrous_mode"] }
|
|
mail-builder = { git = "https://github.com/stalwartlabs/mail-builder", features = ["ludicrous_mode"] }
|
|
mail-send = { git = "https://github.com/stalwartlabs/mail-send" }
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|