From c3cf8e20023257ae9637cf81a45028e489bd0adf Mon Sep 17 00:00:00 2001 From: Tpt Date: Thu, 20 Apr 2023 08:25:21 +0200 Subject: [PATCH] Start 0.3.16 dev --- Cargo.lock | 18 +++++++++--------- js/Cargo.toml | 4 ++-- lib/Cargo.toml | 4 ++-- oxrocksdb-sys/Cargo.toml | 2 +- python/Cargo.toml | 4 ++-- server/Cargo.toml | 4 ++-- 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 91829603..52f50962 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -790,9 +790,9 @@ dependencies = [ [[package]] name = "linux-raw-sys" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f508063cc7bb32987c71511216bd5a32be15bccb6a80b52df8b9d7f01fc3aa2" +checksum = "9b085a4f2cde5781fc4b1717f2e86c62f5cda49de7ba99a7c2eae02b61c9064c" [[package]] name = "lock_api" @@ -927,7 +927,7 @@ dependencies = [ [[package]] name = "oxigraph" -version = "0.3.15-dev" +version = "0.3.16-dev" dependencies = [ "criterion", "digest", @@ -959,7 +959,7 @@ dependencies = [ [[package]] name = "oxigraph_js" -version = "0.3.15-dev" +version = "0.3.16-dev" dependencies = [ "console_error_panic_hook", "js-sys", @@ -969,7 +969,7 @@ dependencies = [ [[package]] name = "oxigraph_server" -version = "0.3.15-dev" +version = "0.3.16-dev" dependencies = [ "anyhow", "assert_cmd", @@ -1027,7 +1027,7 @@ dependencies = [ [[package]] name = "oxrocksdb-sys" -version = "0.3.14" +version = "0.3.16-dev" dependencies = [ "bindgen", "cc", @@ -1279,7 +1279,7 @@ dependencies = [ [[package]] name = "pyoxigraph" -version = "0.3.15-dev" +version = "0.3.16-dev" dependencies = [ "oxigraph", "pyo3", @@ -1448,9 +1448,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustix" -version = "0.37.12" +version = "0.37.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "722529a737f5a942fdbac3a46cee213053196737c5eaa3386d52e85b786f2659" +checksum = "f79bef90eb6d984c72722595b5b1348ab39275a5e5123faca6863bf07d75a4e0" dependencies = [ "bitflags", "errno", diff --git a/js/Cargo.toml b/js/Cargo.toml index c70cd8da..fa008e7e 100644 --- a/js/Cargo.toml +++ b/js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_js" -version = "0.3.15" +version = "0.3.16-dev" 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.15", path="../lib" } +oxigraph = { version = "0.3.16-dev", 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 5e0a3900..c425dd67 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph" -version = "0.3.15" +version = "0.3.16-dev" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -45,7 +45,7 @@ sparesults = { version = "0.1.7", path="sparesults", features = ["rdf-star"] } [target.'cfg(not(target_family = "wasm"))'.dependencies] libc = "0.2" -oxrocksdb-sys = { version = "0.3.15", path="../oxrocksdb-sys" } +oxrocksdb-sys = { version = "0.3.16-dev", path="../oxrocksdb-sys" } oxhttp = { version = "0.1", optional = true } [target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies] diff --git a/oxrocksdb-sys/Cargo.toml b/oxrocksdb-sys/Cargo.toml index abd73ef8..9ba2d405 100644 --- a/oxrocksdb-sys/Cargo.toml +++ b/oxrocksdb-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxrocksdb-sys" -version = "0.3.15" +version = "0.3.16-dev" authors = ["Tpt "] license = "GPL-2.0 OR Apache-2.0" repository = "https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys" diff --git a/python/Cargo.toml b/python/Cargo.toml index 7793dbff..414dc63d 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pyoxigraph" -version = "0.3.15" +version = "0.3.16-dev" authors = ["Tpt"] license = "MIT OR Apache-2.0" readme = "README.md" @@ -19,5 +19,5 @@ doctest = false abi3 = ["pyo3/abi3-py37"] [dependencies] -oxigraph = { version = "0.3.15", path="../lib", features = ["http_client"] } +oxigraph = { version = "0.3.16-dev", path="../lib", features = ["http_client"] } pyo3 = { version = "0.18", features = ["extension-module"] } diff --git a/server/Cargo.toml b/server/Cargo.toml index c3a8f5c0..0dc7c5ec 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxigraph_server" -version = "0.3.15" +version = "0.3.16-dev" authors = ["Tpt "] license = "MIT OR Apache-2.0" readme = "README.md" @@ -17,7 +17,7 @@ anyhow = "1" oxhttp = { version = "0.1", features = ["rayon"] } clap = { version = "=4.0", features = ["derive"] } clap_lex = "=0.3.0" -oxigraph = { version = "0.3.15", path = "../lib", features = ["http_client"] } +oxigraph = { version = "0.3.16-dev", path = "../lib", features = ["http_client"] } sparesults = { version = "0.1.7", path = "../lib/sparesults", features = ["rdf-star"] } rand = "0.8" url = "2"