* refactor: inherit Clippy lint config and Rust edition from workspace This also ensures developers running `clippy lint` locally get the same lints as during CI, especially when the Rust toolchain version is fixed through a `rust-toolchain.toml` file. * chore(clippy.toml): bump MSRV to 1.87
34 lines
1.1 KiB
TOML
34 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
|