The repo ships an MIT LICENSE and the README carries an MIT badge, but the crates themselves declared no license, so `cargo metadata`, packaging and any downstream mirror saw "license: null". Adds [workspace.package] license = "MIT" and inherits it in all five members via license.workspace = true. Verified with cargo metadata: all five now report MIT. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
28 lines
584 B
TOML
28 lines
584 B
TOML
[package]
|
|
name = "archipelago-security"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[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"] }
|
|
serde_json = "1.0"
|
|
aes-gcm = "0.10.3"
|
|
rand = "0.8.5"
|
|
hex = "0.4"
|
|
zeroize = { version = "1.8.2", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
|
|
[lib]
|
|
name = "archipelago_security"
|
|
path = "src/lib.rs"
|