2023-07-08 08:30:39 +02:00
|
|
|
[package]
|
2023-07-22 14:42:43 +02:00
|
|
|
name = "filter-sake"
|
2023-07-08 08:30:39 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Rodolphe Bréard <rodolphe@what.tf>"]
|
|
|
|
edition = "2021"
|
|
|
|
description = "Sub-address key filter for OpenSMTPD"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
2023-07-13 20:05:02 +02:00
|
|
|
anyhow = { version = "1.0.71", default-features = false, features = ["std"] }
|
|
|
|
clap = { version = "4.3.11", default-features = false, features = ["derive", "std"] }
|
2023-07-14 17:29:15 +02:00
|
|
|
data-encoding = { version = "2.4.0", default-features = false, features = ["std"] }
|
2023-07-22 18:02:05 +02:00
|
|
|
hmac = { version = "0.12.1", default-features = false }
|
2023-07-31 22:49:21 +02:00
|
|
|
idna = { version = "0.4.0", default-features = false, features = ["std"] }
|
2023-07-22 18:02:05 +02:00
|
|
|
sha2 = { version = "0.10.7", default-features = false, features = ["std", "asm"] }
|