1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
[package]
name = "oxigraph-testsuite"
version = "0.0.0"
authors.workspace = true
license.workspace = true
description = """
Implementation of W3C testsuites for Oxigraph
"""
edition.workspace = true
rust-version.workspace = true
publish = false
[dependencies]
anyhow.workspace = true
clap = { workspace = true, features = ["derive"] }
oxigraph.workspace = true
oxiri.workspace = true
oxttl.workspace = true
spargebra.workspace = true
sparopt.workspace = true
spareval.workspace = true
text-diff.workspace = true
time = { workspace = true, features = ["formatting"] }
[dev-dependencies]
codspeed-criterion-compat.workspace = true
[lints]
workspace = true
[[bench]]
name = "parser"
harness = false
|