Fork of https://github.com/oxigraph/oxigraph.git for the purpose of NextGraph project
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
662 B
30 lines
662 B
[package]
|
|
name = "oxigraph_testsuite"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description = """
|
|
Implementation of W3C testsuites for Oxigraph
|
|
"""
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
publish = false
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
oxigraph = { path = "../lib" }
|
|
oxttl = { path= "../lib/oxttl" }
|
|
sparopt = { path = "../lib/sparopt" }
|
|
spargebra = { path = "../lib/spargebra" }
|
|
text-diff = "0.4"
|
|
time = { version = "0.3", features = ["formatting"] }
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
rio_api = "0.8"
|
|
rio_turtle = "0.8"
|
|
|
|
[[bench]]
|
|
name = "parser"
|
|
harness = false |