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/opensmtpd/Cargo.toml

30 lines
728 B
TOML
Raw Normal View History

2020-12-20 17:24:08 +01:00
[package]
name = "opensmtpd"
2020-12-21 15:43:56 +01:00
version = "0.4.1"
2020-12-20 17:24:08 +01:00
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"
2020-12-20 18:17:32 +01:00
readme = "../README.md"
2020-12-20 17:24:08 +01:00
license = "MIT OR Apache-2.0"
include = ["src/**/*", "Cargo.toml", "../LICENSE-*.txt"]
[dependencies]
log = "0.4"
nom = "6.0"
2020-12-20 18:15:07 +01:00
opensmtpd_derive = { version = "0.4", path = "../opensmtpd-derive" }
2020-12-20 17:24:08 +01:00
pretty-hex = "0.2"
[dev-dependencies]
simplelog = "0.10"
2020-12-20 17:24:08 +01:00
[[example]]
name = "counter"
path = "examples/counter.rs"
2020-12-21 15:28:19 +01:00
[[example]]
name = "rm_x-originating-ip"
path = "examples/rm_x-originating-ip.rs"