-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (44 loc) · 1.32 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "pschema-rs"
version = "0.0.4"
authors = ["Ángel Iglesias Préstamo <[email protected]>"]
description = "Pregel-based schema validation algorithm written in Rust for generating Wikidata subsets"
documentation = "https://docs.rs/crate/pschema-rs/latest"
repository = "https://github.com/angelip2303/pschema-rs"
readme = "README.md"
license = "GPL-3.0-or-later"
edition = "2021"
keywords = ["pregel", "wikidata", "subsetting", "duckdb", "validation"]
categories = ["algorithms", "database", "mathematics", "science"]
[dependencies]
pregel-rs = { path = "../pregel-rs" }
wikidata-rs = { path = "../wd2duckdb/wikidata-rs" }
polars = { version = "0.45.1", features = [
"lazy",
"is_in",
"performant",
"parquet",
"chunked_ids",
"list_eval",
"dtype-categorical",
"rows",
"is_first_distinct",
] }
duckdb = { version = "1.1.1" }
rayon = "1.7.0"
wikidata = "1.1.0"
strum = "0.26.3"
strum_macros = "0.26.4"
bimap = "0.6.3"
rio_turtle = "0.8.4"
rio_api = "0.8.4"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.5.0"
[target.'cfg(target_env = "msvc")'.dependencies]
mimalloc = { version = "0.1.43", default-features = false }
[dev-dependencies]
duckdb = { version = "1.1.1", features = ["bundled"] }
[profile.release]
codegen-units = 1
opt-level = 3
lto = "thin"