spamassassin-milter/Cargo.toml

26 lines
754 B
TOML
Raw Normal View History

2020-01-30 20:27:28 +00:00
[package]
name = "spamassassin-milter"
2020-07-04 08:26:59 +00:00
version = "0.1.3" # remember to update html_root_url and VERSION
edition = "2018"
2020-01-30 20:39:23 +00:00
description = "Milter for spam filtering with SpamAssassin"
2020-01-30 20:27:28 +00:00
authors = ["David Bürgin <dbuergin@gluet.ch>"]
license = "GPL-3.0-or-later"
2020-01-30 20:27:28 +00:00
categories = ["email"]
2020-02-08 09:43:52 +00:00
keywords = ["email", "milter", "spam", "spamassassin"]
2020-02-01 10:26:20 +00:00
repository = "https://gitlab.com/glts/spamassassin-milter"
exclude = ["/.gitignore"]
2020-01-30 20:27:28 +00:00
[dependencies]
chrono = "0.4"
clap = "2"
ipnet = "2.2"
2020-01-30 20:27:28 +00:00
libc = "0.2"
milter = "0.2.1"
once_cell = "1.3"
2020-02-01 10:26:20 +00:00
2020-02-08 09:43:52 +00:00
# Temporary hack to make the build work on docs.rs, see
# https://github.com/rust-lang/docs.rs/issues/191.
[package.metadata.docs.rs]
rustc-args = ["--cfg", "milter_sys_docs_rs"]
rustdoc-args = ["--cfg", "milter_sys_docs_rs"]