Enables cargo semver-checks again

pull/718/head
Tpt 10 months ago committed by Thomas Tanon
parent f2a2bd5b5d
commit 42a66f62b9
  1. 6
      .github/workflows/tests.yml
  2. 12
      Cargo.lock
  3. 8
      Cargo.toml
  4. 12
      cli/Cargo.toml
  5. 12
      js/Cargo.toml
  6. 18
      lib/Cargo.toml
  7. 11
      lib/oxrdf/Cargo.toml
  8. 9
      lib/oxrdfio/Cargo.toml
  9. 9
      lib/oxrdfxml/Cargo.toml
  10. 9
      lib/oxsdatatypes/Cargo.toml
  11. 9
      lib/oxttl/Cargo.toml
  12. 11
      lib/sparesults/Cargo.toml
  13. 11
      lib/spargebra/Cargo.toml
  14. 13
      lib/sparopt/Cargo.toml
  15. 9
      lib/sparql-smith/Cargo.toml
  16. 8
      oxrocksdb-sys/Cargo.toml
  17. 12
      python/Cargo.toml
  18. 18
      testsuite/Cargo.toml

@ -109,13 +109,17 @@ jobs:
semver_checks: semver_checks:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: false
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with:
submodules: true submodules: true
- uses: ./.github/actions/setup-rust - uses: ./.github/actions/setup-rust
- run: cargo install cargo-semver-checks || true - run: cargo install cargo-semver-checks || true
- uses: actions/cache@v3
with:
path: rocksdb
key: ${{ runner.os }}-rocksdb-8.0.0
- run: bash .github/workflows/install_rocksdb.sh
- run: cargo semver-checks check-release --exclude oxrocksdb-sys --exclude oxigraph-js --exclude pyoxigraph --exclude oxigraph-testsuite --exclude oxigraph-cli - run: cargo semver-checks check-release --exclude oxrocksdb-sys --exclude oxigraph-js --exclude pyoxigraph --exclude oxigraph-testsuite --exclude oxigraph-cli
test_linux_x86_64: test_linux_x86_64:

12
Cargo.lock generated

@ -1033,7 +1033,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph" name = "oxigraph"
version = "0.4.0-alpha.1" version = "0.4.0-alpha.2-dev"
dependencies = [ dependencies = [
"codspeed-criterion-compat", "codspeed-criterion-compat",
"digest", "digest",
@ -1063,7 +1063,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph-cli" name = "oxigraph-cli"
version = "0.4.0-alpha.1" version = "0.4.0-alpha.2-dev"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert_cmd", "assert_cmd",
@ -1082,7 +1082,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph-js" name = "oxigraph-js"
version = "0.4.0-alpha.1" version = "0.4.0-alpha.2-dev"
dependencies = [ dependencies = [
"console_error_panic_hook", "console_error_panic_hook",
"js-sys", "js-sys",
@ -1092,7 +1092,7 @@ dependencies = [
[[package]] [[package]]
name = "oxigraph-testsuite" name = "oxigraph-testsuite"
version = "0.4.0-alpha.1" version = "0.4.0-alpha.2-dev"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"clap", "clap",
@ -1150,7 +1150,7 @@ dependencies = [
[[package]] [[package]]
name = "oxrocksdb-sys" name = "oxrocksdb-sys"
version = "0.4.0-alpha.1" version = "0.4.0-alpha.2-dev"
dependencies = [ dependencies = [
"bindgen", "bindgen",
"cc", "cc",
@ -1403,7 +1403,7 @@ dependencies = [
[[package]] [[package]]
name = "pyoxigraph" name = "pyoxigraph"
version = "0.4.0-alpha.1" version = "0.4.0-alpha.2-dev"
dependencies = [ dependencies = [
"oxigraph", "oxigraph",
"pyo3", "pyo3",

@ -18,13 +18,7 @@ members = [
] ]
resolver = "2" resolver = "2"
[workspace.package] # TODO: use workspace.package shared metadata when https://github.com/obi1kenobi/cargo-semver-checks/issues/462 will be fixed
version = "0.4.0-alpha.1"
authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "MIT OR Apache-2.0"
homepage = "https://oxigraph.org/"
edition = "2021"
rust-version = "1.70"
[workspace.lints.rust] [workspace.lints.rust]
absolute_paths_not_starting_with_crate = "warn" absolute_paths_not_starting_with_crate = "warn"

@ -1,8 +1,8 @@
[package] [package]
name = "oxigraph-cli" name = "oxigraph-cli"
version.workspace = true version = "0.4.0-alpha.2-dev"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["RDF", "SPARQL", "graph-database", "database"] keywords = ["RDF", "SPARQL", "graph-database", "database"]
categories = ["command-line-utilities", "database"] categories = ["command-line-utilities", "database"]
@ -11,8 +11,8 @@ homepage = "https://oxigraph.org/cli/"
description = """ description = """
Oxigraph command line toolkit and SPARQL HTTP server Oxigraph command line toolkit and SPARQL HTTP server
""" """
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[[bin]] [[bin]]
name = "oxigraph" name = "oxigraph"
@ -29,7 +29,7 @@ rustls-webpki = ["oxigraph/http-client-rustls-webpki"]
anyhow = "1.0.72" anyhow = "1.0.72"
oxhttp = { version = "0.2.0-alpha.3", features = ["flate2"] } oxhttp = { version = "0.2.0-alpha.3", features = ["flate2"] }
clap = { version = "4.0", features = ["derive"] } clap = { version = "4.0", features = ["derive"] }
oxigraph = { version = "0.4.0-alpha.1", path = "../lib" } oxigraph = { version = "0.4.0-alpha.2-dev", path = "../lib" }
rand = "0.8" rand = "0.8"
url = "2.4" url = "2.4"
oxiri = "0.2.3-alpha.1" oxiri = "0.2.3-alpha.1"

@ -1,14 +1,14 @@
[package] [package]
name = "oxigraph-js" name = "oxigraph-js"
version.workspace = true version = "0.4.0-alpha.2-dev"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["RDF", "N-Triples", "Turtle", "RDF/XML", "SPARQL"] keywords = ["RDF", "N-Triples", "Turtle", "RDF/XML", "SPARQL"]
repository = "https://github.com/oxigraph/oxigraph/tree/main/js" repository = "https://github.com/oxigraph/oxigraph/tree/main/js"
description = "JavaScript bindings of Oxigraph" description = "JavaScript bindings of Oxigraph"
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
publish = false publish = false
[lib] [lib]
@ -16,7 +16,7 @@ crate-type = ["cdylib"]
name = "oxigraph" name = "oxigraph"
[dependencies] [dependencies]
oxigraph = { version = "0.4.0-alpha.1", path="../lib", features = ["js"] } oxigraph = { path = "../lib", features = ["js"] }
wasm-bindgen = "0.2.83" wasm-bindgen = "0.2.83"
js-sys = "0.3.60" js-sys = "0.3.60"
console_error_panic_hook = "0.1.7" console_error_panic_hook = "0.1.7"

@ -1,19 +1,19 @@
[package] [package]
name = "oxigraph" name = "oxigraph"
version.workspace = true version = "0.4.0-alpha.2-dev"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["RDF", "SPARQL", "graph-database", "database"] keywords = ["RDF", "SPARQL", "graph-database", "database"]
categories = ["database-implementations"] categories = ["database-implementations"]
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib" repository = "https://github.com/oxigraph/oxigraph/tree/main/lib"
homepage.workspace = true homepage = "https://oxigraph.org/"
documentation = "https://docs.rs/oxigraph" documentation = "https://docs.rs/oxigraph"
description = """ description = """
a SPARQL database and RDF toolkit a SPARQL database and RDF toolkit
""" """
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
default = [] default = []
@ -34,7 +34,7 @@ oxilangtag = "0.1"
oxiri = "0.2.3-alpha.1" oxiri = "0.2.3-alpha.1"
oxrdf = { version = "0.2.0-alpha.1", path = "oxrdf", features = ["rdf-star", "oxsdatatypes"] } oxrdf = { version = "0.2.0-alpha.1", path = "oxrdf", features = ["rdf-star", "oxsdatatypes"] }
oxrdfio = { version = "0.1.0-alpha.1", path = "oxrdfio", features = ["rdf-star"] } oxrdfio = { version = "0.1.0-alpha.1", path = "oxrdfio", features = ["rdf-star"] }
oxsdatatypes = { version = "0.2.0-alpha.1", path="oxsdatatypes" } oxsdatatypes = { version = "0.2.0-alpha.1", path = "oxsdatatypes" }
rand = "0.8" rand = "0.8"
regex = "1.7" regex = "1.7"
sha1 = "0.10" sha1 = "0.10"
@ -42,11 +42,11 @@ sha2 = "0.10"
siphasher = ">=0.3, <2.0" siphasher = ">=0.3, <2.0"
sparesults = { version = "0.2.0-alpha.1", path = "sparesults", features = ["rdf-star"] } sparesults = { version = "0.2.0-alpha.1", path = "sparesults", features = ["rdf-star"] }
spargebra = { version = "0.3.0-alpha.1", path = "spargebra", features = ["rdf-star", "sep-0002", "sep-0006"] } spargebra = { version = "0.3.0-alpha.1", path = "spargebra", features = ["rdf-star", "sep-0002", "sep-0006"] }
sparopt = { version = "0.1.0-alpha.1", path="sparopt", features = ["rdf-star", "sep-0002", "sep-0006"] } sparopt = { version = "0.1.0-alpha.1", path = "sparopt", features = ["rdf-star", "sep-0002", "sep-0006"] }
[target.'cfg(not(target_family = "wasm"))'.dependencies] [target.'cfg(not(target_family = "wasm"))'.dependencies]
libc = "0.2.147" libc = "0.2.147"
oxrocksdb-sys = { version = "0.4.0-alpha.1", path="../oxrocksdb-sys" } oxrocksdb-sys = { version = "0.4.0-alpha.2-dev", path = "../oxrocksdb-sys" }
oxhttp = { version = "0.2.0-alpha.3", optional = true } oxhttp = { version = "0.2.0-alpha.3", optional = true }
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies] [target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]

@ -1,18 +1,17 @@
[package] [package]
name = "oxrdf" name = "oxrdf"
version = "0.2.0-alpha.1" version = "0.2.0-alpha.1"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["RDF"] keywords = ["RDF"]
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf" repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/oxrdf"
homepage.workspace = true
description = """ description = """
A library providing basic data structures related to RDF A library providing basic data structures related to RDF
""" """
documentation = "https://docs.rs/oxrdf" documentation = "https://docs.rs/oxrdf"
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
default = [] default = []
@ -22,7 +21,7 @@ rdf-star = []
rand = "0.8" rand = "0.8"
oxilangtag = "0.1" oxilangtag = "0.1"
oxiri = "0.2.3-alpha.1" oxiri = "0.2.3-alpha.1"
oxsdatatypes = { version = "0.2.0-alpha.1", path="../oxsdatatypes", optional = true } oxsdatatypes = { version = "0.2.0-alpha.1", path = "../oxsdatatypes", optional = true }
[lints] [lints]
workspace = true workspace = true

@ -1,18 +1,17 @@
[package] [package]
name = "oxrdfio" name = "oxrdfio"
version = "0.1.0-alpha.1" version = "0.1.0-alpha.1"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["RDF"] keywords = ["RDF"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml" repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml"
homepage.workspace = true
documentation = "https://docs.rs/oxrdfio" documentation = "https://docs.rs/oxrdfio"
description = """ description = """
Parser and serializer for various RDF formats Parser and serializer for various RDF formats
""" """
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
default = [] default = []

@ -1,18 +1,17 @@
[package] [package]
name = "oxrdfxml" name = "oxrdfxml"
version = "0.1.0-alpha.1" version = "0.1.0-alpha.1"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["RDFXML", "XML", "RDF"] keywords = ["RDFXML", "XML", "RDF"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml" repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/oxrdfxml"
homepage.workspace = true
description = """ description = """
Parser and serializer for the RDF/XML format Parser and serializer for the RDF/XML format
""" """
documentation = "https://docs.rs/oxrdfxml" documentation = "https://docs.rs/oxrdfxml"
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
default = [] default = []

@ -1,18 +1,17 @@
[package] [package]
name = "oxsdatatypes" name = "oxsdatatypes"
version = "0.2.0-alpha.1" version = "0.2.0-alpha.1"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["XSD"] keywords = ["XSD"]
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/oxsdatatypes" repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/oxsdatatypes"
homepage.workspace = true
description = """ description = """
An implementation of some XSD datatypes for SPARQL implementations An implementation of some XSD datatypes for SPARQL implementations
""" """
documentation = "https://docs.rs/oxsdatatypes" documentation = "https://docs.rs/oxsdatatypes"
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
js = ["js-sys"] js = ["js-sys"]

@ -1,18 +1,17 @@
[package] [package]
name = "oxttl" name = "oxttl"
version = "0.1.0-alpha.1" version = "0.1.0-alpha.1"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["N-Triples", "N-Quads", "Turtle", "TriG", "N3"] keywords = ["N-Triples", "N-Quads", "Turtle", "TriG", "N3"]
repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/oxttl" repository = "https://github.com/oxigraph/oxigraph/tree/master/lib/oxttl"
homepage.workspace = true
description = """ description = """
Parser and serializer for languages related to RDF Turtle (N-Triples, N-Quads, Turtle, TriG and N3) Parser and serializer for languages related to RDF Turtle (N-Triples, N-Quads, Turtle, TriG and N3)
""" """
documentation = "https://docs.rs/oxttl" documentation = "https://docs.rs/oxttl"
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
default = [] default = []

@ -1,18 +1,17 @@
[package] [package]
name = "sparesults" name = "sparesults"
version = "0.2.0-alpha.1" version = "0.2.0-alpha.1"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["SPARQL"] keywords = ["SPARQL"]
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/sparesults" repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/sparesults"
homepage.workspace = true
description = """ description = """
SPARQL query results formats parsers and serializers SPARQL query results formats parsers and serializers
""" """
documentation = "https://docs.rs/sparesults" documentation = "https://docs.rs/sparesults"
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
default = [] default = []
@ -22,7 +21,7 @@ async-tokio = ["dep:tokio", "quick-xml/async-tokio", "json-event-parser/async-to
[dependencies] [dependencies]
json-event-parser = "0.2.0-alpha.2" json-event-parser = "0.2.0-alpha.2"
memchr = "2.5" memchr = "2.5"
oxrdf = { version = "0.2.0-alpha.1", path="../oxrdf" } oxrdf = { version = "0.2.0-alpha.1", path = "../oxrdf" }
quick-xml = ">=0.29, <0.32" quick-xml = ">=0.29, <0.32"
tokio = { version = "1.29", optional = true, features = ["io-util"] } tokio = { version = "1.29", optional = true, features = ["io-util"] }

@ -1,18 +1,17 @@
[package] [package]
name = "spargebra" name = "spargebra"
version = "0.3.0-alpha.1" version = "0.3.0-alpha.1"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["SPARQL"] keywords = ["SPARQL"]
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/spargebra" repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/spargebra"
homepage.workspace = true
documentation = "https://docs.rs/spargebra" documentation = "https://docs.rs/spargebra"
description = """ description = """
A SPARQL parser A SPARQL parser
""" """
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
default = [] default = []
@ -25,7 +24,7 @@ peg = "0.8"
rand = "0.8" rand = "0.8"
oxiri = "0.2.3-alpha.1" oxiri = "0.2.3-alpha.1"
oxilangtag = "0.1" oxilangtag = "0.1"
oxrdf = { version = "0.2.0-alpha.1", path="../oxrdf" } oxrdf = { version = "0.2.0-alpha.1", path = "../oxrdf" }
[lints] [lints]
workspace = true workspace = true

@ -1,18 +1,17 @@
[package] [package]
name = "sparopt" name = "sparopt"
version = "0.1.0-alpha.1" version = "0.1.0-alpha.1"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["SPARQL"] keywords = ["SPARQL"]
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/sparopt" repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/sparopt"
homepage.workspace = true
documentation = "https://docs.rs/sparopt" documentation = "https://docs.rs/sparopt"
description = """ description = """
A SPARQL optimizer A SPARQL optimizer
""" """
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
default = [] default = []
@ -21,9 +20,9 @@ sep-0002 = ["spargebra/sep-0002"]
sep-0006 = ["spargebra/sep-0006"] sep-0006 = ["spargebra/sep-0006"]
[dependencies] [dependencies]
oxrdf = { version = "0.2.0-alpha.1", path="../oxrdf" } oxrdf = { version = "0.2.0-alpha.1", path = "../oxrdf" }
rand = "0.8" rand = "0.8"
spargebra = { version = "0.3.0-alpha.1", path="../spargebra" } spargebra = { version = "0.3.0-alpha.1", path = "../spargebra" }
[lints] [lints]
workspace = true workspace = true

@ -1,18 +1,17 @@
[package] [package]
name = "sparql-smith" name = "sparql-smith"
version = "0.1.0-alpha.5" version = "0.1.0-alpha.5"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["SPARQL"] keywords = ["SPARQL"]
repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/sparql-smith" repository = "https://github.com/oxigraph/oxigraph/tree/main/lib/sparql-smith"
homepage.workspace = true
documentation = "https://docs.rs/sparql-smith" documentation = "https://docs.rs/sparql-smith"
description = """ description = """
A SPARQL test cases generator A SPARQL test cases generator
""" """
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
[features] [features]
default = [] default = []

@ -1,7 +1,7 @@
[package] [package]
name = "oxrocksdb-sys" name = "oxrocksdb-sys"
version.workspace = true version = "0.4.0-alpha.2-dev"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license = "GPL-2.0 OR Apache-2.0" license = "GPL-2.0 OR Apache-2.0"
repository = "https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys" repository = "https://github.com/oxigraph/oxigraph/tree/main/oxrocksdb-sys"
readme = "README.md" readme = "README.md"
@ -9,8 +9,8 @@ description = """
Rust bindings for RocksDB for Oxigraph usage. Rust bindings for RocksDB for Oxigraph usage.
""" """
documentation = "https://docs.rs/oxrocksdb-sys" documentation = "https://docs.rs/oxrocksdb-sys"
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
build = "build.rs" build = "build.rs"
links = "rocksdb" links = "rocksdb"

@ -1,15 +1,15 @@
[package] [package]
name = "pyoxigraph" name = "pyoxigraph"
version.workspace = true version = "0.4.0-alpha.2-dev"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
readme = "README.md" readme = "README.md"
keywords = ["RDF", "SPARQL", "graph-database", "database"] keywords = ["RDF", "SPARQL", "graph-database", "database"]
repository = "https://github.com/oxigraph/oxigraph/tree/main/python" repository = "https://github.com/oxigraph/oxigraph/tree/main/python"
homepage = "https://pyoxigraph.readthedocs.io/" homepage = "https://pyoxigraph.readthedocs.io/"
description = "Python bindings of Oxigraph, a SPARQL database and RDF toolkit" description = "Python bindings of Oxigraph, a SPARQL database and RDF toolkit"
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
publish = false publish = false
[lib] [lib]
@ -25,7 +25,7 @@ rocksdb-pkg-config = ["oxigraph/rocksdb-pkg-config"]
rustls = ["oxigraph/http-client-rustls-native"] rustls = ["oxigraph/http-client-rustls-native"]
[dependencies] [dependencies]
oxigraph = { version = "0.4.0-alpha.1", path="../lib" } oxigraph.path = "../lib"
pyo3 = { version = "0.20.1", features = ["extension-module"] } pyo3 = { version = "0.20.1", features = ["extension-module"] }
[lints] [lints]

@ -1,22 +1,22 @@
[package] [package]
name = "oxigraph-testsuite" name = "oxigraph-testsuite"
version.workspace = true version = "0.4.0-alpha.2-dev"
authors.workspace = true authors = ["Tpt <thomas@pellissier-tanon.fr>"]
license.workspace = true license = "MIT OR Apache-2.0"
description = """ description = """
Implementation of W3C testsuites for Oxigraph Implementation of W3C testsuites for Oxigraph
""" """
edition.workspace = true edition = "2021"
rust-version.workspace = true rust-version = "1.70"
publish = false publish = false
[dependencies] [dependencies]
anyhow = "1.0.72" anyhow = "1.0.72"
clap = { version = "4.0", features = ["derive"] } clap = { version = "4.0", features = ["derive"] }
oxigraph = { path = "../lib" } oxigraph.path = "../lib"
oxttl = { path= "../lib/oxttl" } oxttl.path = "../lib/oxttl"
sparopt = { path = "../lib/sparopt" } sparopt.path = "../lib/sparopt"
spargebra = { path = "../lib/spargebra" } spargebra.path = "../lib/spargebra"
text-diff = "0.4" text-diff = "0.4"
time = { version = "0.3", features = ["formatting"] } time = { version = "0.3", features = ["formatting"] }

Loading…
Cancel
Save