refactor: inherit Clippy lint config and Rust edition from workspace (#3782)

* 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
This commit is contained in:
Alejandro González
2025-06-14 01:16:48 +02:00
committed by GitHub
parent c9b98a6154
commit 301967d204
8 changed files with 50 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
name = "theseus"
version = "0.9.5"
authors = ["Jai A <jaiagr+gpg@pm.me>"]
edition = "2024"
edition.workspace = true
[dependencies]
bytes.workspace = true
@@ -78,3 +78,6 @@ winreg.workspace = true
[features]
tauri = ["dep:tauri"]
cli = ["dep:indicatif"]
[lints]
workspace = true

View File

@@ -1,7 +1,7 @@
[package]
name = "ariadne"
version = "0.1.0"
edition = "2024"
edition.workspace = true
[dependencies]
serde = { workspace = true, features = ["derive"] }
@@ -13,3 +13,6 @@ rand.workspace = true
either.workspace = true
chrono = { workspace = true, features = ["serde"] }
serde_cbor.workspace = true
[lints]
workspace = true

View File

@@ -2,7 +2,7 @@
name = "daedalus"
version = "0.2.3"
authors = ["Jai A <jai@modrinth.com>"]
edition = "2024"
edition.workspace = true
license = "MIT"
description = "Utilities for querying and parsing Minecraft metadata"
repository = "https://github.com/modrinth/daedalus/"
@@ -18,3 +18,6 @@ serde = { workspace = true, features = ["derive"] }
serde_json.workspace = true
chrono = { workspace = true, features = ["serde"] }
thiserror.workspace = true
[lints]
workspace = true