* 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
19 lines
442 B
TOML
19 lines
442 B
TOML
[package]
|
|
name = "ariadne"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
uuid = { workspace = true, features = ["v4", "fast-rng", "serde"] }
|
|
serde_bytes.workspace = true
|
|
rand.workspace = true
|
|
either.workspace = true
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
serde_cbor.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|