chore: remove unused dependency

This commit is contained in:
Elijah McMorris 2025-06-27 13:50:23 -07:00
parent c86218be16
commit 878cd3e8d8
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8

View file

@ -5,15 +5,15 @@ edition = "2018"
repository = "https://github.com/syvb/wikidata/" repository = "https://github.com/syvb/wikidata/"
license = "Apache-2.0" license = "Apache-2.0"
description = "A library for working with Wikidata in Rust" description = "A library for working with Wikidata in Rust"
exclude = [ exclude = ["items/"]
"items/"
]
[dependencies] [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 = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140" serde_json = "1.0.140"
lazy_static = "1.5.0"
[dev-dependencies] [dev-dependencies]
reqwest = { version = "0.12", features = ["blocking"] } reqwest = { version = "0.12", features = ["blocking"] }