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.
66 lines
1.7 KiB
66 lines
1.7 KiB
[package]
|
|
name = "oxigraph"
|
|
version = "0.3.0-beta.3"
|
|
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
|
|
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 = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[features]
|
|
default = []
|
|
sophia = ["sophia_api", "oxrdf/sophia_api"]
|
|
http_client = ["oxhttp", "oxhttp/rustls"]
|
|
|
|
[dependencies]
|
|
rand = "0.8"
|
|
md-5 = "0.10"
|
|
sha-1 = "0.10"
|
|
sha2 = "0.10"
|
|
digest = "0.10"
|
|
regex = "1"
|
|
oxilangtag = "0.1"
|
|
oxiri = "0.2"
|
|
rio_api = "0.6"
|
|
rio_turtle = "0.6"
|
|
rio_xml = "0.6"
|
|
hex = "0.4"
|
|
nom = "7"
|
|
siphasher = "0.3"
|
|
lazy_static = "1"
|
|
sophia_api = { version = "0.7", optional = true }
|
|
num_cpus = "1"
|
|
oxrdf = { version = "0.1.0-beta.3", path="oxrdf", features = ["rdf-star"] }
|
|
spargebra = { version = "0.2.0-beta.3", path="spargebra", features = ["rdf-star"] }
|
|
sparesults = { version = "0.1.0-beta.3", path="sparesults", features = ["rdf-star"] }
|
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
libc = "0.2"
|
|
oxrocksdb-sys = { version = "0.3.0-beta.3", path="../rocksdb-sys" }
|
|
oxhttp = { version = "0.1", optional = true }
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
js-sys = "0.3"
|
|
getrandom = {version="0.2", features=["js"]}
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
oxhttp = "0.1"
|
|
sophia_api = { version = "0.7", features = ["test_macro"] }
|
|
zstd = "0.10"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
|
|
wasm-bindgen-test = "0.3"
|
|
|
|
[[bench]]
|
|
name = "store"
|
|
harness = false
|
|
|