WIP: Test Rio Turtle buffer bounds

pull/448/head
Tpt 2 years ago
parent 13976014e7
commit 70c42fdea8
  1. 3
      .github/workflows/artifacts.yml
  2. 9
      Cargo.lock
  3. 6
      lib/Cargo.toml

@ -7,6 +7,9 @@ on:
release: release:
types: types:
- published - published
pull_request:
branches:
- main
concurrency: concurrency:
group: ${{ github.workflow }}-${{ github.ref }} group: ${{ github.workflow }}-${{ github.ref }}

9
Cargo.lock generated

@ -1392,14 +1392,12 @@ dependencies = [
[[package]] [[package]]
name = "rio_api" name = "rio_api"
version = "0.8.3" version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/oxigraph/rio?branch=buffer-bound#1bc8870218b2880dfa4fe8204f04755d682c1a11"
checksum = "42e121c6d7cd351521b2f18d9443ffadc622ff4941cb9a332755fceaf22f8d2a"
[[package]] [[package]]
name = "rio_turtle" name = "rio_turtle"
version = "0.8.3" version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/oxigraph/rio?branch=buffer-bound#1bc8870218b2880dfa4fe8204f04755d682c1a11"
checksum = "9ab908d64c750d82f0e4bc79acb686143d8c26d750e4eb02ba8dd91e1531c2dc"
dependencies = [ dependencies = [
"oxilangtag", "oxilangtag",
"oxiri", "oxiri",
@ -1409,8 +1407,7 @@ dependencies = [
[[package]] [[package]]
name = "rio_xml" name = "rio_xml"
version = "0.8.3" version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://github.com/oxigraph/rio?branch=buffer-bound#1bc8870218b2880dfa4fe8204f04755d682c1a11"
checksum = "3939c6a1cc5f99ea4ce45b92b9b8a4d50f2047284290c38127c2b6f9cbd4a2aa"
dependencies = [ dependencies = [
"oxilangtag", "oxilangtag",
"oxiri", "oxiri",

@ -30,9 +30,9 @@ digest = "0.10"
regex = "1" regex = "1"
oxilangtag = "0.1" oxilangtag = "0.1"
oxiri = "0.2" oxiri = "0.2"
rio_api = "0.8" rio_api = { git = "https://github.com/oxigraph/rio", branch = "buffer-bound" }
rio_turtle = "0.8" rio_turtle = { git = "https://github.com/oxigraph/rio", branch = "buffer-bound" }
rio_xml = "0.8" rio_xml = { git = "https://github.com/oxigraph/rio", branch = "buffer-bound" }
hex = "0.4" hex = "0.4"
siphasher = "0.3" siphasher = "0.3"
lazy_static = "1" lazy_static = "1"

Loading…
Cancel
Save