archy/core/security/Cargo.toml

24 lines
469 B
TOML
Raw Normal View History

2026-01-24 22:01:51 +00:00
[package]
name = "archipelago-security"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
thiserror = "1.0"
log = "0.4"
tracing = "0.1"
uuid = { version = "1.0", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
aes-gcm = "0.10"
rand = "0.8"
[dev-dependencies]
tempfile = "3"
2026-01-24 22:01:51 +00:00
[lib]
name = "archipelago_security"
path = "src/lib.rs"