Rust implementation of NextGraph, a Decentralized and local-first web 3.0 ecosystem
https://nextgraph.org
byzantine-fault-tolerancecrdtsdappsdecentralizede2eeeventual-consistencyjson-ldlocal-firstmarkdownocapoffline-firstp2pp2p-networkprivacy-protectionrdfrich-text-editorself-hostedsemantic-websparqlweb3collaboration
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.
59 lines
1.7 KiB
59 lines
1.7 KiB
[package]
|
|
name = "oxigraph"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
keywords = ["RDF", "SPARQL", "graph-database", "database"]
|
|
categories = ["database-implementations"]
|
|
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/oxigraph"
|
|
homepage = "https://oxigraph.org/"
|
|
documentation = "https://docs.rs/oxigraph"
|
|
description = """
|
|
a SPARQL database and RDF toolkit
|
|
"""
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[features]
|
|
js = ["getrandom/js", "oxsdatatypes/js", "js-sys"]
|
|
|
|
|
|
[dependencies]
|
|
digest.workspace = true
|
|
hex.workspace = true
|
|
json-event-parser.workspace = true
|
|
md-5.workspace = true
|
|
oxilangtag.workspace = true
|
|
oxiri.workspace = true
|
|
oxrdf = { workspace = true, features = ["rdf-star", "oxsdatatypes"] }
|
|
oxrdfio = { workspace = true, features = ["rdf-star"] }
|
|
oxsdatatypes.workspace = true
|
|
rand.workspace = true
|
|
regex.workspace = true
|
|
sha1.workspace = true
|
|
sha2.workspace = true
|
|
siphasher.workspace = true
|
|
sparesults = { workspace = true, features = ["rdf-star"] }
|
|
spargebra = { workspace = true, features = ["rdf-star", "sep-0002", "sep-0006"] }
|
|
sparopt = { workspace = true, features = ["rdf-star", "sep-0002", "sep-0006"] }
|
|
thiserror.workspace = true
|
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
|
libc = "0.2"
|
|
rocksdb.workspace = true
|
|
|
|
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
|
|
getrandom.workspace = true
|
|
js-sys = { workspace = true, optional = true }
|
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dev-dependencies]
|
|
codspeed-criterion-compat.workspace = true
|
|
zstd.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|