Allows newer dependency versions

pull/688/head
Tpt 6 months ago committed by Thomas Tanon
parent 389d993dc4
commit 9979a3d503
  1. 11
      .github/workflows/tests.yml
  2. 2
      lib/Cargo.toml
  3. 4
      oxrocksdb-sys/Cargo.toml

@ -132,6 +132,17 @@ jobs:
env:
RUST_BACKTRACE: 1
test_linux_latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- run: rustup update
- uses: Swatinem/rust-cache@v2
- run: rm Cargo.lock && cargo update
- run: cargo test
address_sanitizer:
runs-on: ubuntu-latest
steps:

@ -36,7 +36,7 @@ rio_api = "0.8"
rio_turtle = "0.8"
rio_xml = "0.8"
hex = "0.4"
siphasher = "0.3"
siphasher = ">=0.3,<2.0"
lazy_static = "1"
json-event-parser = "0.1"
oxrdf = { version = "0.1.7", path="oxrdf", features = ["rdf-star", "oxsdatatypes"] }

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

Loading…
Cancel
Save