- Added new dependencies: `adler2`, `crc32fast`, `flate2`, `miniz_oxide`, and `libredox`. - Updated existing dependencies: `tokio-rustls` to version 0.26.4 and `filetime` to version 0.2.27. - Removed the `backup.rs` file as it is no longer needed. - Introduced tests for configuration and credential management. - Enhanced the `identity` module to generate W3C compliant DID documents. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
625 B
TOML
25 lines
625 B
TOML
[package]
|
|
name = "archipelago-container"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[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"] }
|
|
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"
|
|
|
|
[lib]
|
|
name = "archipelago_container"
|
|
path = "src/lib.rs"
|