-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
64 lines (57 loc) · 1.46 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
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "oxigraph-0_2-sled"
version = "0.2.5"
authors = ["Tpt <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["RDF", "SPARQL", "graph-database", "database"]
categories = ["database-implementations"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/lib"
homepage = "https://oxigraph.org/"
description = """
a SPARQL database and RDF toolkit
"""
edition = "2018"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
sophia = ["sophia_api"]
# http_client = ["httparse", "native-tls"]
[dependencies]
sled = { version = "0.34" }
quick-xml = "0.22"
rand = "0.8"
md-5 = "0.9"
sha-1 = "0.9"
sha2 = "0.9"
digest = "0.9"
regex = "1"
oxilangtag = "0.1"
oxiri = "0.1"
rio_api = "0.5"
rio_turtle = "0.5"
rio_xml = "0.5"
hex = "0.4"
nom = "6"
peg = "0.7"
siphasher = "0.3"
lasso = {version="0.5", features=["multi-threaded", "inline-more"]}
sophia_api = { version = "0.6.2", optional = true }
http = "0.2"
# httparse = { version = "1", optional = true }
# native-tls = { version = "0.2", optional = true }
json-event-parser = "0.1"
# [target.'cfg(target_arch = "wasm32")'.dependencies]
# js-sys = "0.3"
# getrandom = {version="0.2", features=["js"]}
[dev-dependencies]
rayon = "1"
criterion = "0.3"
sophia_api = { version = "0.6.2", features = ["test_macro"] }
# [target.'cfg(target_arch = "wasm32")'.dev-dependencies]
# wasm-bindgen-test = "0.3"
[[bench]]
name = "store"
harness = false
required-features = ["sled"]