yume-post-smtp-proto/Cargo.toml

22 lines
568 B
TOML
Raw Permalink Normal View History

2022-12-03 12:28:10 -06:00
[package]
name = "smtp-proto"
2023-01-27 10:01:50 -06: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 03:36:54 -06:00
license = "Apache-2.0 OR MIT"
2023-01-27 10:01:50 -06:00
keywords = ["smtp", "lmtp", "protocol", "parser"]
categories = ["email", "parser-implementations"]
readme = "README.md"
2024-05-28 08:26:33 -05:00
version = "0.1.5"
2022-12-03 12:28:10 -06:00
edition = "2021"
[dependencies]
2024-01-31 15:31:14 -06:00
serde = { version = "1.0", features = ["derive"], optional = true }
2022-12-05 09:09:17 -06:00
[dev-dependencies]
2024-01-31 15:31:14 -06:00
[features]
default = []
serde_support = ["serde"]