yume-post-smtp-proto/Cargo.toml

22 lines
568 B
TOML
Raw Normal View History

2022-12-03 18:28:10 +00:00
[package]
name = "smtp-proto"
2023-01-27 16:01:50 +00:00
description = "SMTP protocol parser"
authors = [ "Stalwart Labs <hello@stalw.art>"]
repository = "https://github.com/stalwartlabs/smtp-proto"
homepage = "https://github.com/stalwartlabs/smtp-proto"
2023-12-31 10:36:54 +01:00
license = "Apache-2.0 OR MIT"
2023-01-27 16:01:50 +00:00
keywords = ["smtp", "lmtp", "protocol", "parser"]
categories = ["email", "parser-implementations"]
readme = "README.md"
2024-01-31 18:31:14 -03:00
version = "0.1.4"
2022-12-03 18:28:10 +00:00
edition = "2021"
[dependencies]
2024-01-31 18:31:14 -03:00
serde = { version = "1.0", features = ["derive"], optional = true }
2022-12-05 15:09:17 +00:00
[dev-dependencies]
2024-01-31 18:31:14 -03:00
[features]
default = []
serde_support = ["serde"]