instant-smtp/Cargo.toml

13 lines
364 B
TOML
Raw Normal View History

2020-08-06 14:25:02 +00:00
[package]
2022-11-21 22:17:29 +00:00
name = "instant-smtp"
description = "Low-level sans-I/O SMTP protocol implementation"
2021-02-22 16:45:28 +00:00
keywords = ["email", "smtp", "parser", "codec"]
2022-11-21 22:17:29 +00:00
version = "0.1.0"
repository = "https://github.com/InstantDomain/instant-smtp"
2021-02-22 16:45:28 +00:00
license = "MIT OR Apache-2.0"
2022-11-21 22:19:08 +00:00
edition = "2021"
2020-08-06 14:25:02 +00:00
[dependencies]
2022-06-12 07:24:28 +00:00
nom = "7"
serde = { version = "1.0", features = ["derive"], optional = true }