wikidata-to-surrealdb/Cargo.toml
2025-08-05 14:27:55 -07:00

24 lines
721 B
TOML

[package]
name = "wikidata-to-surrealdb"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
surrealdb = { version = "2.3.7", features = ["protocol-http", "kv-mem"] }
tokio = { version = "1.47", features = ["fs", "time", "sync"] }
futures = "0.3"
wikidata = "1.1"
bzip2 = { version = "0.6" }
indicatif = "0.18"
rand = "0.9"
backon = { version = "1.5", features = ["tokio-sleep"] }
[dev-dependencies]
rstest = "0.26"
surrealdb = { version = "2.3.7", features = ["kv-mem"] }
criterion = { version = "0.7", features = ["async_tokio"] }
pprof = { version = "0.15", features = ["criterion", "protobuf-codec"] }