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>
29 lines
737 B
TOML
29 lines
737 B
TOML
[package]
|
|
name = "archipelago-container"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_yaml = "0.9"
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
reqwest = { version = "0.11", default-features = false, features = ["json", "rustls-tls"] }
|
|
hyper = { version = "0.14", features = ["client", "http1"] }
|
|
thiserror = "1.0"
|
|
anyhow = "1.0"
|
|
async-trait = "0.1"
|
|
futures = "0.3"
|
|
indexmap = { version = "2.0", features = ["serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
log = "0.4"
|
|
tracing = "0.1"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
|
|
[lib]
|
|
name = "archipelago_container"
|
|
path = "src/lib.rs"
|