spamassassin-milter/Cargo.toml

30 lines
881 B
TOML
Raw Normal View History

2020-01-30 20:27:28 +00:00
[package]
name = "spamassassin-milter"
2022-08-31 07:38:25 +00:00
version = "0.3.2"
edition = "2021"
rust-version = "1.61.0"
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]
async-trait = "0.1.61"
2022-02-21 17:58:24 +00:00
byte-strings = "0.2.2"
bytes = "1.3.0"
2023-01-02 09:39:35 +00:00
chrono = "0.4.23"
futures = "0.3.25"
indymilter = "0.2.0"
ipnet = "2.7.1"
2023-01-02 09:39:35 +00:00
once_cell = "1.17.0"
2022-08-31 07:26:35 +00:00
signal-hook = "0.3.14"
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
tokio = { version = "1.24.1", features = ["fs", "io-util", "macros", "net", "process", "rt", "rt-multi-thread", "sync"] }
2022-02-21 17:58:24 +00:00
[dev-dependencies]
indymilter-test = "0.0.3"
rand = "0.8.5"
tokio = { version = "1.24.1", features = ["signal", "time"] }