You've already forked AstralRinth
forked from didirus/AstralRinth
* Update some Labrinth dependencies * Update some Labrinth dependencies * Update some Labrinth dependencies * Update zip in Labrinth * Update itertools in Labrinth * Update validator in labrinth * Update thiserror in labrinth * Update rust_decimal, redis, and deadpool-redis in labrinth * Update totp-rs and spdx in labrinth * Update maxminddb and tar in labrinth * Update sentry and sentry-actix in labrinth * Update image in labrinth * Update lettre in labrinth * Update derive-new and rust_iso3166 in labrinth * Update async-stripe and json-patch in labrinth * Update clap and iana-time-zone in labrinth * Update labrinth to Rust 2024 * Cargo fmt * Just do a full cargo update * Update daedelus to Rust 2024 * Update daedelus_client to Rust 2024 * Set the formatting edition to 2024 * Fix formatting IntelliJ messed up my formatting
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "daedalus_client"
|
|
version = "0.2.2"
|
|
authors = ["Jai A <jai@modrinth.com>"]
|
|
edition = "2024"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
daedalus = { path = "../../packages/daedalus" }
|
|
tokio = { version = "1", features = ["full"] }
|
|
futures = "0.3.25"
|
|
dotenvy = "0.15.6"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde-xml-rs = "0.6.0"
|
|
lazy_static = "1.4.0"
|
|
thiserror = "2.0"
|
|
reqwest = { version = "0.12.15", default-features = false, features = ["stream", "json", "rustls-tls-native-roots"] }
|
|
async_zip = { version = "0.0.17", features = ["full"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
bytes = "1.6.0"
|
|
rust-s3 = { version = "0.35.1", default-features = false, features = ["fail-on-err", "tags", "tokio-rustls-tls"] }
|
|
dashmap = "6.1.0"
|
|
sha1_smol = { version = "1.0.0", features = ["std"] }
|
|
indexmap = { version = "2.2.6", features = ["serde"] }
|
|
itertools = "0.14.0"
|
|
tracing-error = "0.2.0"
|
|
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|