This repository has been archived on 2023-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
rust-opensmtpd/Cargo.toml

25 lines
569 B
TOML
Raw Normal View History

[package]
name = "opensmtpd"
version = "0.2.0"
authors = ["Rodolphe Bréard <rodolphe@what.tf>"]
edition = "2018"
description = "Interface for OpenSMTPD filters"
keywords = ["opensmtpd", "filter", "mail"]
documentation = "https://docs.rs/opensmtpd/"
repository = "https://github.com/breard-r/rust-opensmtpd"
readme = "README.md"
license = "MIT OR Apache-2.0"
include = ["src/**/*", "Cargo.toml", "LICENSE-*.txt"]
[dependencies]
log = "0.4"
nom = "6.0"
2020-12-20 14:34:30 +01:00
pretty-hex = "0.2"
[dev-dependencies]
simplelog = "0.8"
[[example]]
name = "counter"
path = "examples/counter.rs"