From 878cd3e8d8a66a985342ed2f306d39c6ad647c0f Mon Sep 17 00:00:00 2001 From: NexVeridian Date: Fri, 27 Jun 2025 13:50:23 -0700 Subject: [PATCH] chore: remove unused dependency --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 924b7d9..880bab1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,15 +5,15 @@ edition = "2018" repository = "https://github.com/syvb/wikidata/" license = "Apache-2.0" description = "A library for working with Wikidata in Rust" -exclude = [ - "items/" -] +exclude = ["items/"] [dependencies] -chrono = { version = "0.4.41", features = ["std", "serde"], default-features = false } +chrono = { version = "0.4.41", features = [ + "std", + "serde", +], default-features = false } serde = { version = "1.0.219", features = ["derive"] } serde_json = "1.0.140" -lazy_static = "1.5.0" [dev-dependencies] reqwest = { version = "0.12", features = ["blocking"] }