panorama/smtp/Cargo.toml

18 lines
502 B
TOML
Raw Normal View History

2021-08-09 11:56:32 +00:00
[package]
name = "panorama-smtp"
description = "SMTP protocol implementation with high-level async client."
version = "0.0.1"
edition = "2018"
authors = ["Michael Zhang <mail@mzhang.io>"]
keywords = ["smtp", "email", "parser"]
license = "GPL-3.0-or-later"
categories = ["email"]
repository = "https://git.mzhang.io/michael/panorama"
documentation = "https://docs.rs/panorama-smtp"
readme = "README.md"
workspace = ".."
[dependencies]
2021-10-28 22:30:25 +00:00
nom = "7.0.0"
2021-08-09 22:10:19 +00:00
panorama-proto-common = { path = "../proto-common" }