From 70c42fdea8f66a7527ba42d8800ae57048cc2181 Mon Sep 17 00:00:00 2001 From: Tpt Date: Thu, 23 Mar 2023 21:51:23 +0100 Subject: [PATCH] WIP: Test Rio Turtle buffer bounds --- .github/workflows/artifacts.yml | 3 +++ Cargo.lock | 9 +++------ lib/Cargo.toml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 61eb671e..66843561 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -7,6 +7,9 @@ on: release: types: - published + pull_request: + branches: + - main concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/Cargo.lock b/Cargo.lock index c403ed3c..d778003d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1392,14 +1392,12 @@ dependencies = [ [[package]] name = "rio_api" version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42e121c6d7cd351521b2f18d9443ffadc622ff4941cb9a332755fceaf22f8d2a" +source = "git+https://github.com/oxigraph/rio?branch=buffer-bound#1bc8870218b2880dfa4fe8204f04755d682c1a11" [[package]] name = "rio_turtle" version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ab908d64c750d82f0e4bc79acb686143d8c26d750e4eb02ba8dd91e1531c2dc" +source = "git+https://github.com/oxigraph/rio?branch=buffer-bound#1bc8870218b2880dfa4fe8204f04755d682c1a11" dependencies = [ "oxilangtag", "oxiri", @@ -1409,8 +1407,7 @@ dependencies = [ [[package]] name = "rio_xml" version = "0.8.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3939c6a1cc5f99ea4ce45b92b9b8a4d50f2047284290c38127c2b6f9cbd4a2aa" +source = "git+https://github.com/oxigraph/rio?branch=buffer-bound#1bc8870218b2880dfa4fe8204f04755d682c1a11" dependencies = [ "oxilangtag", "oxiri", diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 156cb59c..3623bdf0 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -30,9 +30,9 @@ digest = "0.10" regex = "1" oxilangtag = "0.1" oxiri = "0.2" -rio_api = "0.8" -rio_turtle = "0.8" -rio_xml = "0.8" +rio_api = { git = "https://github.com/oxigraph/rio", branch = "buffer-bound" } +rio_turtle = { git = "https://github.com/oxigraph/rio", branch = "buffer-bound" } +rio_xml = { git = "https://github.com/oxigraph/rio", branch = "buffer-bound" } hex = "0.4" siphasher = "0.3" lazy_static = "1"