From 374db4f00d04ffac1caf8012043001712ffc2eab Mon Sep 17 00:00:00 2001 From: benma-agent Date: Sat, 5 Sep 2026 22:27:35 +0200 Subject: [PATCH] Remove redundant development configuration Remove the duplicate async-trait dev-dependency, since tests already inherit it from the regular dependencies. Drop src/rustfmt.toml so source files inherit the identical Rust 2021 edition setting from the root configuration. --- Cargo.toml | 1 - src/rustfmt.toml | 1 - 2 files changed, 2 deletions(-) delete mode 100644 src/rustfmt.toml diff --git a/Cargo.toml b/Cargo.toml index b46eade..7a10852 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,6 @@ wasm-bindgen-futures = { version = "=0.4.42", optional = true } web-sys = { version = "=0.3.69", features = ["Storage", "Window"], optional = true } [dev-dependencies] -async-trait = "0.1.68" futures-channel = "0.3" wasm-bindgen-test = "=0.3.42" tokio = { version = "1", features = ["time", "macros", "rt", "fs"] } diff --git a/src/rustfmt.toml b/src/rustfmt.toml deleted file mode 100644 index 36c419b..0000000 --- a/src/rustfmt.toml +++ /dev/null @@ -1 +0,0 @@ -edition = "2021" \ No newline at end of file