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.
43 lines
896 B
43 lines
896 B
[package]
|
|
name = "oxigraph-fuzz"
|
|
version = "0.0.0"
|
|
authors = ["Automatically generated"]
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
lazy_static = "1"
|
|
libfuzzer-sys = "0.4"
|
|
spargebra = { path = "../lib/spargebra", features = ["rdf-star"] }
|
|
sparesults = { path = "../lib/sparesults", features = ["rdf-star"] }
|
|
sparql-smith = { path = "../lib/sparql-smith" }
|
|
oxigraph = { path = "../lib" }
|
|
|
|
[workspace]
|
|
|
|
[[bin]]
|
|
name = "sparql_eval"
|
|
path = "fuzz_targets/sparql_eval.rs"
|
|
|
|
[[bin]]
|
|
name = "sparql_query"
|
|
path = "fuzz_targets/sparql_query.rs"
|
|
|
|
[[bin]]
|
|
name = "sparql_update"
|
|
path = "fuzz_targets/sparql_update.rs"
|
|
|
|
[[bin]]
|
|
name = "sparql_results_json"
|
|
path = "fuzz_targets/sparql_results_json.rs"
|
|
|
|
[[bin]]
|
|
name = "sparql_results_xml"
|
|
path = "fuzz_targets/sparql_results_xml.rs"
|
|
|
|
[[bin]]
|
|
name = "sparql_results_tsv"
|
|
path = "fuzz_targets/sparql_results_tsv.rs"
|
|
|