mail-server/crates/email/Cargo.toml
dependabot[bot] 4573f5c6a9
Bump rasn-cms from 0.10.6 to 0.27.1
Bumps [rasn-cms](https://github.com/librasn/rasn) from 0.10.6 to 0.27.1.
- [Release notes](https://github.com/librasn/rasn/releases)
- [Changelog](https://github.com/librasn/rasn/blob/main/CHANGELOG.md)
- [Commits](https://github.com/librasn/rasn/compare/rasn-cms-v0.10.6...rasn-cms-v0.27.1)

---
updated-dependencies:
- dependency-name: rasn-cms
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-08-25 22:20:06 +00:00

43 lines
1.3 KiB
TOML

[package]
name = "email"
version = "0.13.2"
edition = "2024"
resolver = "2"
[dependencies]
utils = { path = "../utils" }
nlp = { path = "../nlp" }
store = { path = "../store" }
trc = { path = "../trc" }
jmap_proto = { path = "../jmap-proto" }
common = { path = "../common" }
directory = { path = "../directory" }
groupware = { path = "../groupware" }
spam-filter = { path = "../spam-filter" }
smtp-proto = { version = "0.1", features = ["rkyv"] }
mail-parser = { version = "0.11", features = ["full_encoding"] }
mail-builder = { version = "0.4" }
sieve-rs = { version = "0.7", features = ["rkyv"] }
tokio = { version = "1.47", features = ["net", "macros"] }
serde = { version = "1.0", features = ["derive"]}
serde_json = "1.0"
aes = "0.8.3"
aes-gcm = "0.10.1"
aes-gcm-siv = "0.11.1"
cbc = { version = "0.1.2", features = ["alloc"] }
rasn = "0.10"
rasn-cms = "0.27"
rasn-pkix = "0.10"
rsa = "0.9.2"
rand = "0.8"
sequoia-openpgp = { version = "2.0", default-features = false, features = ["crypto-rust", "allow-experimental-crypto", "allow-variable-time-crypto"] }
hashify = "0.2"
rkyv = { version = "0.8.10", features = ["little_endian"] }
compact_str = "0.9.0"
[features]
test_mode = []
enterprise = []
[dev-dependencies]
tokio = { version = "1.47", features = ["full"] }