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"
|
2021-05-22 20:56:55 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"], optional = true }
|