forked from KonradHoeffner/hdt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
84 lines (74 loc) · 2.54 KB
/
Cargo.toml
File metadata and controls
84 lines (74 loc) · 2.54 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[package]
name = "hdt"
version = "0.5.0"
repository = "https://github.com/konradhoeffner/hdt"
authors = ["Tim Baccaert <tbaccaer@vub.be>", "Konrad Höffner"]
license = "MIT"
description = "Library for the Header Dictionary Triples (HDT) RDF compression format."
keywords = ["rdf", "hdt", "compression", "file-format"]
categories = ["compression", "filesystem", "parsing", "web-programming"]
readme = "README.md"
edition = "2024"
rust-version = "1.87"
[package.metadata."docs.rs"]
all-features = true
[dependencies]
bytesize = "2"
crc = "3"
ntriple = "0.1"
sophia = { version = "0.9", optional = true }
thiserror = "2"
log = "0.4"
env_logger = { version = "0.11", default-features = false, features = ["auto-color"] }
mownstr = "0.3"
bincode = { version = "2", optional = true, default-features = false, features = ["std", "serde"] }
rayon = { version = "1.11.0", default-features = false }
serde = { version = "1", optional = true, features = ["derive"] }
spareval = { version = "0.2" , optional = true }
spargebra = { version = "0.4", optional = true, default-features = false }
eyre = { version = "0.6", optional = true }
color-eyre = { version = "0.6", optional = true }
clap = { version = "4.5", optional = true, features = ["derive"] }
fs-err = { version = "3.1.0", optional = true }
bitset-core = { version = "0.1.1", optional = true }
oxttl = { version = "0.2.1", optional = true }
lasso = { version = "0.7.3", features = ["multi-threaded"], optional = true }
qwt = "0.3.4"
mem_dbg = "0.3.4"
[features]
default = ["sophia"]
sophia = ["dep:sophia"]
cli = ["sophia", "nt", "dep:eyre", "dep:color-eyre", "dep:clap","dep:fs-err"]
cache = ["dep:serde", "dep:bincode"]
sparql = ["dep:spareval", "dep:spargebra"]
nt = ["dep:lasso","dep:oxttl","dep:bitset-core"]
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
getrandom_02 = { package="getrandom", version = "0.2", features = ["js"] }
getrandom = { version = "0.3", features = ["wasm_js"] }
console_error_panic_hook = "0.1"
serde = "1"
serde_json = "1"
[[bench]]
name = "criterion"
harness = false
[[bench]]
name = "gungraun"
harness = false
[lib]
bench = false
crate-type = ["rlib", "cdylib"]
[[bin]]
name = "hdt"
required-features = ["cli", "sophia"]
[profile.test]
opt-level = 1
[dev-dependencies]
pretty_assertions = "1"
env_logger = { version = "0.11", default-features = false, features = ["auto-color"] }
criterion = { version = "0.8", default-features = false, features = ["cargo_bench_support", "html_reports"] }
gungraun = "0.17"
color-eyre = "0.6"
fs-err = "3.1.0"
sparesults = "0.3"
walkdir = "2.5.0"