Co-authored-by: Geometrically <18202329+Geometrically@users.noreply.github.com> Co-authored-by: Prospector <6166773+Prospector@users.noreply.github.com>
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "daedalus_client"
|
|
version = "0.2.2"
|
|
authors = ["Jai A <jai@modrinth.com>"]
|
|
edition = "2021"
|
|
|
|
# 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 = "1.0"
|
|
reqwest = { version = "0.12.5", default-features = false, features = [
|
|
"stream",
|
|
"json",
|
|
"rustls-tls-native-roots",
|
|
] }
|
|
async_zip = { version = "0.0.17", features = ["full"] }
|
|
semver = "1.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
bytes = "1.6.0"
|
|
rust-s3 = { version = "0.33.0", default-features = false, features = [
|
|
"fail-on-err",
|
|
"tags",
|
|
"tokio-rustls-tls",
|
|
"reqwest",
|
|
] }
|
|
dashmap = "5.5.3"
|
|
sha1_smol = { version = "1.0.0", features = ["std"] }
|
|
indexmap = { version = "2.2.6", features = ["serde"] }
|
|
itertools = "0.13.0"
|
|
tracing-error = "0.2.0"
|
|
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tracing-futures = { version = "0.2.5", features = ["futures", "tokio"] }
|