spamassassin-milter/Cargo.toml

27 lines
824 B
TOML
Raw Normal View History

2020-01-30 20:27:28 +00:00
[package]
name = "spamassassin-milter"
2022-03-14 07:35:57 +00:00
version = "0.3.1"
edition = "2021"
rust-version = "1.56.1"
2020-01-30 20:39:23 +00:00
description = "Milter for spam filtering with SpamAssassin"
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"
2020-10-07 07:18:42 +00:00
exclude = ["/.gitignore", "/.gitlab-ci.yml"]
2020-01-30 20:27:28 +00:00
[dependencies]
2022-08-31 07:26:35 +00:00
async-trait = "0.1.57"
2022-02-21 17:58:24 +00:00
byte-strings = "0.2.2"
2022-08-31 07:26:35 +00:00
chrono = "0.4.22"
futures = "0.3.23"
2022-05-04 07:42:48 +00:00
indymilter = "0.1.1"
2022-08-31 07:26:35 +00:00
ipnet = "2.5.0"
once_cell = "1.13.1"
signal-hook = "0.3.14"
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
tokio = { version = "1.20.1", features = ["fs", "io-util", "macros", "net", "process", "rt", "rt-multi-thread", "sync"] }
2022-02-21 17:58:24 +00:00
[dev-dependencies]
2022-08-31 07:26:35 +00:00
tokio = { version = "1.20.1", features = ["signal", "time"] }