Files
kumomta/Cargo.toml
T
2024-02-06 13:29:36 -07:00

59 lines
1.6 KiB
TOML

[workspace]
members = [
"crates/bounce-classify",
"crates/cidr-map",
"crates/domain-map",
"crates/integration-tests",
"crates/kcli",
"crates/kumod",
"crates/mailparsing",
"crates/mta-sts",
"crates/proxy-server",
"crates/regex-set-map",
"crates/rfc5321",
"crates/spool",
"crates/tailer",
"crates/timeq",
"crates/throttle",
"crates/traffic-gen",
"crates/tsa-daemon",
"crates/validate-shaping",
"crates/version-info",
]
resolver = "2"
[profile.release]
opt-level = 3
debug = 1 # include line tables for more meaningful backtraces
[workspace.dependencies]
axum = "0.6"
axum-server = "0.5"
data-encoding = "2.4"
ed25519-dalek = "2.0"
futures = "0.3.28"
libunbound = {git="https://github.com/KumoCorp/libunbound-rs.git", rev="1f629e81919d8aae7e95fff82dc1390912b4ba53"}
mlua = "0.8"
once_cell = "1.17"
openssl = { version="=0.10.60" } # pinned; see patch below
openssl-sys = { version="0.9" }
rustls = "0.21"
sqlite = "0.32"
tempfile = "3.8"
tokio = "1.32"
tokio-rustls = "0.24"
# Be sure to update the link to the docs in docs/reference/kumo.dns/configure_resolver.md
# to match the version that we are using when you update this dep
hickory-resolver = "0.24"
hickory-proto = "0.24"
utoipa = {version="4", features=["axum_extras", "time", "uuid"]}
utoipa-rapidoc = { version="1.0", features = ["axum"] }
uuid = "1.4"
webpki-roots = "0.25"
[patch.crates-io]
# Can be removed once dane support is upstreamed
openssl = { version="0.10.60", git="https://github.com/KumoCorp/rust-openssl.git", branch="dane" }
# Can be removed once dane support is upstreamed
openssl-sys = { version="0.9", git="https://github.com/KumoCorp/rust-openssl.git", branch="dane" }