instant-smtp/Cargo.toml

23 lines
572 B
TOML
Raw Normal View History

2020-08-06 14:25:02 +00:00
[package]
2020-09-10 15:39:22 +00:00
name = "smtp-codec"
2021-02-22 16:46:49 +00:00
description = "Low-level SMTP Parser and Serializer"
2021-02-22 16:45:28 +00:00
keywords = ["email", "smtp", "parser", "codec"]
2020-08-06 14:25:02 +00:00
version = "0.1.0"
2022-06-12 07:22:02 +00:00
authors = ["Damian Poddebniak <poddebniak@mailbox.org>"]
2021-02-22 16:45:28 +00:00
repository = "https://github.com/duesee/smtp-codec"
license = "MIT OR Apache-2.0"
2020-08-06 14:25:02 +00:00
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []
serdex = ["serde"]
2020-08-06 14:25:02 +00:00
[dependencies]
2022-06-12 07:24:28 +00:00
nom = "7"
abnf-core = "0.5"
# Optional
serde = { version = "1.0", features = ["derive"], optional = true }