forked from didirus/AstralRinth
* feat: consistently format all HTML, XML, JSON, CSS, JS, TS, SQL, TOML, YAML, and Markdown files * chore: deal with VS Code not being able to parse valid editorconfig syntax Sometimes I'm surprised that computers even work. * chore: get rid of IntelliJ IDE config files that should not be there These were already added to the `.gitignore` a long time ago, and now are being ignored by Prettier. * fix: rename `tooling-config` `format` script to `fix` for it to run with Turbo
41 lines
1.1 KiB
TOML
41 lines
1.1 KiB
TOML
[package]
|
|
name = "daedalus_client"
|
|
version = "0.2.2"
|
|
authors = ["Jai A <jai@modrinth.com>"]
|
|
edition.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
daedalus.workspace = true
|
|
tokio = { workspace = true, features = ["sync", "macros", "rt-multi-thread"] }
|
|
futures.workspace = true
|
|
dotenvy.workspace = true
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
serde-xml-rs.workspace = true
|
|
thiserror.workspace = true
|
|
reqwest = { workspace = true, features = ["stream", "json", "rustls-tls-native-roots"] }
|
|
async_zip = { workspace = true, features = [
|
|
"chrono",
|
|
"tokio-fs",
|
|
"deflate",
|
|
"bzip2",
|
|
"zstd",
|
|
"deflate64",
|
|
] }
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
bytes.workspace = true
|
|
rust-s3.workspace = true
|
|
dashmap.workspace = true
|
|
sha1_smol.workspace = true
|
|
indexmap = { workspace = true, features = ["serde"] }
|
|
itertools.workspace = true
|
|
tracing-error.workspace = true
|
|
|
|
tracing.workspace = true
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
|
|
[lints]
|
|
workspace = true
|