20 lines
541 B
TOML
20 lines
541 B
TOML
[package]
|
|
name = "wikidata"
|
|
version = "0.3.0"
|
|
authors = ["Smitty <me@smitop.com>"]
|
|
edition = "2018"
|
|
repository = "https://github.com/Smittyvb/wikidata/"
|
|
license = "Apache-2.0"
|
|
description = "A library for working with Wikidata in Rust"
|
|
exclude = [
|
|
"items/"
|
|
]
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.31", features = ["std", "serde"], default-features = false }
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
serde_json = "1.0.64"
|
|
lazy_static = "1.4.0"
|
|
|
|
[dev-dependencies]
|
|
reqwest = { version = "0.11", features = ["blocking"] }
|