-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
53 lines (45 loc) · 1.24 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
50
51
52
53
[package]
name = "hdt"
version = "0.2.2"
repository = "https://github.com/konradhoeffner/hdt"
authors = ["Tim Baccaert <[email protected]>", "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"]
edition = "2021"
[package.metadata."docs.rs"]
all-features = true
[dependencies]
bytesize = "1"
crc = "3"
iref = "3"
langtag = "0.4"
ntriple = "0.1"
sophia = { version = "0.9", optional = true }
sucds = "0.8"
thiserror = "2"
log = "0.4"
mownstr = "0.3"
lazy_static = "1"
eyre = "0.6"
[features]
default = ["sophia"]
sophia = ["dep:sophia"]
[[bench]]
name = "criterion"
harness = false
[[bench]]
name = "iai"
harness = false
[lib]
bench = false
[profile.test]
opt-level = 1
[dev-dependencies]
pretty_assertions = "1"
env_logger = { version = "0.11", default-features = false, features = ["auto-color"] }
criterion = { version = "0.5", default-features = false, features = ["cargo_bench_support", "html_reports"] }
#iai = "0.1"
iai = { git = "https://github.com/sigaloid/iai", rev = "d56a597" } # until https://github.com/bheisler/iai/pull/35 is merged
color-eyre = "0.6"