-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
34 lines (29 loc) · 931 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "wd2duckdb"
version = "0.0.1"
authors = [ "Ángel Iglesias Préstamo <[email protected]>" ]
description = "Transform a Wikidata JSON dump into an DuckDB database"
repository = "https://github.com/angelip2303/wd2duckdb"
readme = "README.md"
license = "GPL-3.0-or-later"
edition = "2021"
keywords = ["wikidata", "duckdb", "json", "dump", "database"]
categories = ["algorithms", "database", "mathematics", "science"]
[workspace]
members = ["wikidata-rs"]
[workspace.package]
version = "0.0.1"
[dependencies]
wikidata-rs = { version="0.0.1", path="./wikidata-rs" }
clap = { version = "4.1.8", features = ["derive"] }
humantime = "2.1.0"
duckdb = { version="0.7.1", features = ["chrono", "bundled"] }
chrono = "0.4.23"
simd-json = "0.10.3"
wikidata = "0.3.0"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.5.0"
[profile.release]
codegen-units = 1
opt-level = 3
lto = "thin"