Move fuzz into workspace

pull/741/head
Yuri Astrakhan 1 year ago
parent 7d523ea04e
commit dec0e8125f
  1. 26
      Cargo.lock
  2. 1
      Cargo.toml
  3. 2
      fuzz/Cargo.toml

26
Cargo.lock generated

@ -839,6 +839,17 @@ version = "0.2.153"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
[[package]]
name = "libfuzzer-sys"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7"
dependencies = [
"arbitrary",
"cc",
"once_cell",
]
[[package]]
name = "libloading"
version = "0.8.1"
@ -1090,6 +1101,21 @@ dependencies = [
"url",
]
[[package]]
name = "oxigraph-fuzz"
version = "0.0.0"
dependencies = [
"anyhow",
"libfuzzer-sys",
"oxigraph",
"oxrdf",
"oxrdfxml",
"oxttl",
"sparesults",
"spargebra",
"sparql-smith",
]
[[package]]
name = "oxigraph-js"
version = "0.4.0-alpha.3-dev"

@ -1,6 +1,7 @@
[workspace]
members = [
"cli",
"fuzz",
"js",
"lib/oxigraph",
"lib/oxrdf",

@ -22,8 +22,6 @@ sparql-smith = { path = "../lib/sparql-smith", features = ["sep-0006"] }
codegen-units = 1
debug = true
[workspace]
[[bin]]
name = "nquads"
path = "fuzz_targets/nquads.rs"

Loading…
Cancel
Save