Starts developing v0.3.0-beta.3

pull/190/head
Tpt 3 years ago
parent a5effb065a
commit da315abd44
  1. 26
      Cargo.lock
  2. 4
      js/Cargo.toml
  3. 10
      lib/Cargo.toml
  4. 2
      lib/oxrdf/Cargo.toml
  5. 4
      lib/sparesults/Cargo.toml
  6. 4
      lib/spargebra/Cargo.toml
  7. 4
      python/Cargo.toml
  8. 2
      rocksdb-sys/Cargo.toml
  9. 6
      server/Cargo.toml
  10. 4
      testsuite/Cargo.toml

26
Cargo.lock generated

@ -764,7 +764,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph" name = "oxigraph"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
dependencies = [ dependencies = [
"criterion", "criterion",
"digest", "digest",
@ -798,7 +798,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph_js" name = "oxigraph_js"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
dependencies = [ dependencies = [
"console_error_panic_hook", "console_error_panic_hook",
"js-sys", "js-sys",
@ -809,7 +809,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph_server" name = "oxigraph_server"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
dependencies = [ dependencies = [
"clap 3.0.13", "clap 3.0.13",
"oxhttp", "oxhttp",
@ -822,7 +822,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph_testsuite" name = "oxigraph_testsuite"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap 3.0.13", "clap 3.0.13",
@ -846,7 +846,7 @@ checksum = "a8a8821a5332e388ab8d6436ab703c5744516c11976e2c08702fbc93fe4b3f51"
[[package]] [[package]]
name = "oxrdf" name = "oxrdf"
version = "0.1.0-beta.2" version = "0.1.0-beta.3"
dependencies = [ dependencies = [
"lasso", "lasso",
"oxilangtag", "oxilangtag",
@ -857,7 +857,7 @@ dependencies = [
[[package]] [[package]]
name = "oxrocksdb-sys" name = "oxrocksdb-sys"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
dependencies = [ dependencies = [
"bindgen", "bindgen",
"cc", "cc",
@ -1070,7 +1070,7 @@ dependencies = [
[[package]] [[package]]
name = "pyoxigraph" name = "pyoxigraph"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
dependencies = [ dependencies = [
"oxigraph", "oxigraph",
"pyo3", "pyo3",
@ -1338,9 +1338,9 @@ dependencies = [
[[package]] [[package]]
name = "security-framework" name = "security-framework"
version = "2.5.0" version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d09d3c15d814eda1d6a836f2f2b56a6abc1446c8a34351cb3180d3db92ffe4ce" checksum = "3fed7948b6c68acbb6e20c334f55ad635dc0f75506963de4464289fbd3b051ac"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"core-foundation", "core-foundation",
@ -1351,9 +1351,9 @@ dependencies = [
[[package]] [[package]]
name = "security-framework-sys" name = "security-framework-sys"
version = "2.5.0" version = "2.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e90dd10c41c6bfc633da6e0c659bd25d31e0791e5974ac42970267d59eba87f7" checksum = "a57321bf8bc2362081b2599912d2961fe899c0efadf1b4b2f8d48b3e253bb96c"
dependencies = [ dependencies = [
"core-foundation-sys", "core-foundation-sys",
"libc", "libc",
@ -1471,7 +1471,7 @@ dependencies = [
[[package]] [[package]]
name = "sparesults" name = "sparesults"
version = "0.1.0-beta.2" version = "0.1.0-beta.3"
dependencies = [ dependencies = [
"json-event-parser", "json-event-parser",
"oxrdf", "oxrdf",
@ -1480,7 +1480,7 @@ dependencies = [
[[package]] [[package]]
name = "spargebra" name = "spargebra"
version = "0.2.0-beta.2" version = "0.2.0-beta.3"
dependencies = [ dependencies = [
"oxilangtag", "oxilangtag",
"oxiri", "oxiri",

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_js" name = "oxigraph_js"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
@ -14,7 +14,7 @@ crate-type = ["cdylib"]
name = "oxigraph" name = "oxigraph"
[dependencies] [dependencies]
oxigraph = { version = "0.3.0-beta.2", path="../lib" } oxigraph = { version = "0.3.0-beta.3", path="../lib" }
wasm-bindgen = "0.2" wasm-bindgen = "0.2"
js-sys = "0.3" js-sys = "0.3"
console_error_panic_hook = "0.1" console_error_panic_hook = "0.1"

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph" name = "oxigraph"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
@ -39,13 +39,13 @@ siphasher = "0.3"
lazy_static = "1" lazy_static = "1"
sophia_api = { version = "0.7", optional = true } sophia_api = { version = "0.7", optional = true }
num_cpus = "1" num_cpus = "1"
oxrdf = { version = "0.1.0-beta.2", path="oxrdf", features = ["rdf-star"] } oxrdf = { version = "0.1.0-beta.3", path="oxrdf", features = ["rdf-star"] }
spargebra = { version = "0.2.0-beta.2", path="spargebra", features = ["rdf-star"] } spargebra = { version = "0.2.0-beta.3", path="spargebra", features = ["rdf-star"] }
sparesults = { version = "0.1.0-beta.2", path="sparesults", features = ["rdf-star"] } sparesults = { version = "0.1.0-beta.3", path="sparesults", features = ["rdf-star"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
libc = "0.2" libc = "0.2"
oxrocksdb-sys = { version = "0.3.0-beta.2", path="../rocksdb-sys" } oxrocksdb-sys = { version = "0.3.0-beta.3", path="../rocksdb-sys" }
oxhttp = { version = "0.1", optional = true } oxhttp = { version = "0.1", optional = true }
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]

@ -1,6 +1,6 @@
[package] [package]
name = "oxrdf" name = "oxrdf"
version = "0.1.0-beta.2" version = "0.1.0-beta.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"

@ -1,6 +1,6 @@
[package] [package]
name = "sparesults" name = "sparesults"
version = "0.1.0-beta.2" version = "0.1.0-beta.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
@ -18,7 +18,7 @@ rdf-star = ["oxrdf/rdf-star"]
[dependencies] [dependencies]
json-event-parser = "0.1" json-event-parser = "0.1"
oxrdf = { version = "0.1.0-beta.2", path="../oxrdf" } oxrdf = { version = "0.1.0-beta.3", path="../oxrdf" }
quick-xml = "0.22" quick-xml = "0.22"
[package.metadata.docs.rs] [package.metadata.docs.rs]

@ -1,6 +1,6 @@
[package] [package]
name = "spargebra" name = "spargebra"
version = "0.2.0-beta.2" version = "0.2.0-beta.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
@ -21,7 +21,7 @@ peg = "0.8"
rand = "0.8" rand = "0.8"
oxiri = "0.2" oxiri = "0.2"
oxilangtag = "0.1" oxilangtag = "0.1"
oxrdf = { version = "0.1.0-beta.2", path="../oxrdf" } oxrdf = { version = "0.1.0-beta.3", path="../oxrdf" }
[package.metadata.docs.rs] [package.metadata.docs.rs]
all-features = true all-features = true

@ -1,6 +1,6 @@
[package] [package]
name = "pyoxigraph" name = "pyoxigraph"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
authors = ["Tpt"] authors = ["Tpt"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
@ -16,5 +16,5 @@ name = "pyoxigraph"
doctest = false doctest = false
[dependencies] [dependencies]
oxigraph = { version = "0.3.0-beta.2", path="../lib", features = ["http_client"] } oxigraph = { version = "0.3.0-beta.3", path="../lib", features = ["http_client"] }
pyo3 = { version = "0.15", features = ["extension-module", "abi3-py37"] } pyo3 = { version = "0.15", features = ["extension-module", "abi3-py37"] }

@ -1,6 +1,6 @@
[package] [package]
name = "oxrocksdb-sys" name = "oxrocksdb-sys"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "GPL-2.0 OR Apache-2.0" license = "GPL-2.0 OR Apache-2.0"
repository = "https://github.com/oxigraph/oxigraph/tree/v0.3/rocksdb-sys" repository = "https://github.com/oxigraph/oxigraph/tree/v0.3/rocksdb-sys"

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_server" name = "oxigraph_server"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
@ -14,8 +14,8 @@ edition = "2021"
[dependencies] [dependencies]
oxhttp = { version = "0.1", features = ["rayon"] } oxhttp = { version = "0.1", features = ["rayon"] }
clap = { version = "3", features = ["derive"] } clap = { version = "3", features = ["derive"] }
oxigraph = { version = "0.3.0-beta.2", path = "../lib", features = ["http_client"] } oxigraph = { version = "0.3.0-beta.3", path = "../lib", features = ["http_client"] }
sparesults = { version = "0.1.0-beta.2", path = "../lib/sparesults", features = ["rdf-star"] } sparesults = { version = "0.1.0-beta.3", path = "../lib/sparesults", features = ["rdf-star"] }
rand = "0.8" rand = "0.8"
url = "2" url = "2"
oxiri = "0.2" oxiri = "0.2"

@ -1,6 +1,6 @@
[package] [package]
name = "oxigraph_testsuite" name = "oxigraph_testsuite"
version = "0.3.0-beta.2" version = "0.3.0-beta.3"
authors = ["Tpt <thomas@pellissier-tanon.fr>"] authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
readme = "../README.md" readme = "../README.md"
@ -15,7 +15,7 @@ publish = false
anyhow = "1" anyhow = "1"
clap = "3" clap = "3"
time = { version = "0.3", features = ["formatting"] } time = { version = "0.3", features = ["formatting"] }
oxigraph = { version = "0.3.0-beta.2", path="../lib" } oxigraph = { version = "0.3.0-beta.3", path="../lib" }
text-diff = "0.4" text-diff = "0.4"
[dev-dependencies] [dev-dependencies]

Loading…
Cancel
Save