-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 831 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 831 Bytes
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
[package]
name = "wd2duckdb"
version = "0.0.1"
authors = [ "Ángel Iglesias Préstamo <angel.iglesias.prestamo@gmail.com>" ]
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"]
[dependencies]
wikidata-rs = { version="0.0.4" }
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"