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
dependabot-preview[bot] e8f99f957d
Update simplelog requirement from 0.9 to 0.10
Updates the requirements on [simplelog](https://github.com/drakulix/simplelog.rs) to permit the latest version.
- [Release notes](https://github.com/drakulix/simplelog.rs/releases)
- [Changelog](https://github.com/Drakulix/simplelog.rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/drakulix/simplelog.rs/compare/v0.9.0...v0.10.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-03-29 04:26:16 +00:00

29 lines
728 B
TOML

[package]
name = "opensmtpd"
version = "0.4.1"
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"
opensmtpd_derive = { version = "0.4", path = "../opensmtpd-derive" }
pretty-hex = "0.2"
[dev-dependencies]
simplelog = "0.10"
[[example]]
name = "counter"
path = "examples/counter.rs"
[[example]]
name = "rm_x-originating-ip"
path = "examples/rm_x-originating-ip.rs"