Upgrades RocksDB

pull/597/head
Tpt 1 year ago committed by Thomas Tanon
parent 4a798ed3ea
commit 7c227830e9
  1. 518
      Cargo.lock
  2. 2
      lib/oxrdfxml/Cargo.toml
  3. 2
      lib/sparesults/Cargo.toml
  4. 2
      oxrocksdb-sys/Cargo.toml
  5. 2
      oxrocksdb-sys/rocksdb
  6. 3
      python/src/lib.rs
  7. 6
      testsuite/Cargo.toml

518
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -22,7 +22,7 @@ async-tokio = ["dep:tokio", "quick-xml/async-tokio"]
oxrdf = { version = "0.2.0-alpha.1-dev", path = "../oxrdf" }
oxilangtag = "0.1"
oxiri = "0.2"
quick-xml = "0.29"
quick-xml = "0.30"
tokio = { version = "1", optional = true, features = ["io-util"] }
[dev-dependencies]

@ -21,7 +21,7 @@ rdf-star = ["oxrdf/rdf-star"]
[dependencies]
json-event-parser = "0.1"
oxrdf = { version = "0.2.0-alpha.1-dev", path="../oxrdf" }
quick-xml = "0.29"
quick-xml = "0.30"
[package.metadata.docs.rs]
all-features = true

@ -18,5 +18,5 @@ links = "rocksdb"
libc = "0.2"
[build-dependencies]
bindgen = "0.65"
bindgen = "0.66"
cc = { version = "1", features = ["parallel"] }

@ -1 +1 @@
Subproject commit 443333d8c059c87db408ec2d11685db00031b30a
Subproject commit 5f2d6f0cba9858130be48ae129dd9c9dcafe0f97

@ -1,7 +1,8 @@
#![allow(
clippy::used_underscore_binding,
clippy::unused_self,
clippy::trivially_copy_pass_by_ref
clippy::trivially_copy_pass_by_ref,
unused_qualifications
)]
mod io;

@ -14,17 +14,17 @@ publish = false
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
time = { version = "0.3", features = ["formatting"] }
oxigraph = { path = "../lib" }
oxttl = { path= "../lib/oxttl" }
sparopt = { path = "../lib/sparopt" }
spargebra = { path = "../lib/spargebra" }
text-diff = "0.4"
rio_api = "0.8"
rio_turtle = "0.8"
time = { version = "=0.3.23", features = ["formatting"] }
[dev-dependencies]
criterion = "0.5"
rio_api = "0.8"
rio_turtle = "0.8"
[[bench]]
name = "parser"

Loading…
Cancel
Save