diff --git a/Cargo.lock b/Cargo.lock index b40ad7d1..141188f5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -764,7 +764,7 @@ dependencies = [ [[package]] name = "oxigraph" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" dependencies = [ "criterion", "digest", @@ -798,7 +798,7 @@ dependencies = [ [[package]] name = "oxigraph_js" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" dependencies = [ "console_error_panic_hook", "js-sys", @@ -809,7 +809,7 @@ dependencies = [ [[package]] name = "oxigraph_server" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" dependencies = [ "clap 3.0.13", "oxhttp", @@ -822,7 +822,7 @@ dependencies = [ [[package]] name = "oxigraph_testsuite" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" dependencies = [ "anyhow", "clap 3.0.13", @@ -846,7 +846,7 @@ checksum = "a8a8821a5332e388ab8d6436ab703c5744516c11976e2c08702fbc93fe4b3f51" [[package]] name = "oxrdf" -version = "0.1.0-beta.2" +version = "0.1.0-beta.3" dependencies = [ "lasso", "oxilangtag", @@ -857,7 +857,7 @@ dependencies = [ [[package]] name = "oxrocksdb-sys" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" dependencies = [ "bindgen", "cc", @@ -1070,7 +1070,7 @@ dependencies = [ [[package]] name = "pyoxigraph" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" dependencies = [ "oxigraph", "pyo3", @@ -1338,9 +1338,9 @@ dependencies = [ [[package]] name = "security-framework" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d09d3c15d814eda1d6a836f2f2b56a6abc1446c8a34351cb3180d3db92ffe4ce" +checksum = "3fed7948b6c68acbb6e20c334f55ad635dc0f75506963de4464289fbd3b051ac" dependencies = [ "bitflags", "core-foundation", @@ -1351,9 +1351,9 @@ dependencies = [ [[package]] name = "security-framework-sys" -version = "2.5.0" +version = "2.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e90dd10c41c6bfc633da6e0c659bd25d31e0791e5974ac42970267d59eba87f7" +checksum = "a57321bf8bc2362081b2599912d2961fe899c0efadf1b4b2f8d48b3e253bb96c" dependencies = [ "core-foundation-sys", "libc", @@ -1471,7 +1471,7 @@ dependencies = [ [[package]] name = "sparesults" -version = "0.1.0-beta.2" +version = "0.1.0-beta.3" dependencies = [ "json-event-parser", "oxrdf", @@ -1480,7 +1480,7 @@ dependencies = [ [[package]] name = "spargebra" -version = "0.2.0-beta.2" +version = "0.2.0-beta.3" dependencies = [ "oxilangtag", "oxiri", diff --git a/js/Cargo.toml b/js/Cargo.toml index 9f69824f..c61fd5a0 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_js" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -14,7 +14,7 @@ crate-type = ["cdylib"] name = "oxigraph" [dependencies] -oxigraph = { version = "0.3.0-beta.2", path="../lib" } +oxigraph = { version = "0.3.0-beta.3", path="../lib" } wasm-bindgen = "0.2" js-sys = "0.3" console_error_panic_hook = "0.1" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 74fc2f4f..203eccdb 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -39,13 +39,13 @@ siphasher = "0.3" lazy_static = "1" sophia_api = { version = "0.7", optional = true } num_cpus = "1" -oxrdf = { version = "0.1.0-beta.2", path="oxrdf", features = ["rdf-star"] } -spargebra = { version = "0.2.0-beta.2", path="spargebra", features = ["rdf-star"] } -sparesults = { version = "0.1.0-beta.2", path="sparesults", features = ["rdf-star"] } +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.2", path="../rocksdb-sys" } +oxrocksdb-sys = { version = "0.3.0-beta.3", path="../rocksdb-sys" } oxhttp = { version = "0.1", optional = true } [target.'cfg(target_arch = "wasm32")'.dependencies] diff --git a/lib/oxrdf/Cargo.toml b/lib/oxrdf/Cargo.toml index cd3ec3f2..fe360281 100644 --- a/lib/oxrdf/Cargo.toml +++ b/lib/oxrdf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxrdf" -version = "0.1.0-beta.2" +version = "0.1.0-beta.3" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" diff --git a/lib/sparesults/Cargo.toml b/lib/sparesults/Cargo.toml index 76aafc47..2e2ff13e 100644 --- a/lib/sparesults/Cargo.toml +++ b/lib/sparesults/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sparesults" -version = "0.1.0-beta.2" +version = "0.1.0-beta.3" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -18,7 +18,7 @@ rdf-star = ["oxrdf/rdf-star"] [dependencies] 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" [package.metadata.docs.rs] diff --git a/lib/spargebra/Cargo.toml b/lib/spargebra/Cargo.toml index a5346107..3665cb99 100644 --- a/lib/spargebra/Cargo.toml +++ b/lib/spargebra/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spargebra" -version = "0.2.0-beta.2" +version = "0.2.0-beta.3" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -21,7 +21,7 @@ peg = "0.8" rand = "0.8" oxiri = "0.2" 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] all-features = true diff --git a/python/Cargo.toml b/python/Cargo.toml index cc399a48..eceb28f9 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyoxigraph" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" authors = ["Tpt"] license = "MIT OR Apache-2.0" readme = "README.md" @@ -16,5 +16,5 @@ name = "pyoxigraph" doctest = false [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"] } diff --git a/rocksdb-sys/Cargo.toml b/rocksdb-sys/Cargo.toml index 3f4fe441..a48fe6db 100644 --- a/rocksdb-sys/Cargo.toml +++ b/rocksdb-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxrocksdb-sys" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" authors = ["Tpt "] license = "GPL-2.0 OR Apache-2.0" repository = "https://github.com/oxigraph/oxigraph/tree/v0.3/rocksdb-sys" diff --git a/server/Cargo.toml b/server/Cargo.toml index de9d5d8c..5f15e796 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_server" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -14,8 +14,8 @@ edition = "2021" [dependencies] oxhttp = { version = "0.1", features = ["rayon"] } clap = { version = "3", features = ["derive"] } -oxigraph = { version = "0.3.0-beta.2", path = "../lib", features = ["http_client"] } -sparesults = { version = "0.1.0-beta.2", path = "../lib/sparesults", features = ["rdf-star"] } +oxigraph = { version = "0.3.0-beta.3", path = "../lib", features = ["http_client"] } +sparesults = { version = "0.1.0-beta.3", path = "../lib/sparesults", features = ["rdf-star"] } rand = "0.8" url = "2" oxiri = "0.2" diff --git a/testsuite/Cargo.toml b/testsuite/Cargo.toml index 50c6d1f2..41a6e0c5 100644 --- a/testsuite/Cargo.toml +++ b/testsuite/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_testsuite" -version = "0.3.0-beta.2" +version = "0.3.0-beta.3" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "../README.md" @@ -15,7 +15,7 @@ publish = false anyhow = "1" clap = "3" 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" [dev-dependencies]