Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
856 B
44 lines
856 B
[package]
|
|
name = "oxigraph"
|
|
version = "0.1.0"
|
|
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
|
|
license = "MIT/Apache-2.0"
|
|
readme = "../README.md"
|
|
keywords = ["RDF", "N-Triples", "Turtle", "RDF/XML", "SPARQL"]
|
|
repository = "https://github.com/Tpt/oxigraph"
|
|
description = """
|
|
An RDF and SPARQL library in Rust
|
|
"""
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
lazy_static = "1"
|
|
rocksdb = { version = "0.13", optional = true }
|
|
quick-xml = "0.18"
|
|
rand = "0.7"
|
|
md-5 = "0.8"
|
|
sha-1 = "0.8"
|
|
sha2 = "0.8"
|
|
digest = "0.8"
|
|
anyhow = "1"
|
|
regex = "1"
|
|
rio_api = "0.4"
|
|
rio_turtle = "0.4"
|
|
rio_xml = "0.4"
|
|
hex = "0.4"
|
|
nom = "5"
|
|
peg = "0.6"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
js-sys = "0.3"
|
|
|
|
[dev-dependencies]
|
|
rayon = "1"
|
|
criterion = "0.3"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|
|
|
|
[[bench]]
|
|
name = "sparql_query"
|
|
harness = false
|
|
|