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.
 
 
 
 
 
 
oxigraph/fuzz/Cargo.toml

65 lines
1.2 KiB

[package]
name = "oxigraph-fuzz"
version = "0.0.0"
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
anyhow.workspace = true
libfuzzer-sys.workspace = true
oxigraph.workspace = true
oxrdf = { workspace = true, features = ["rdf-star"] }
oxrdfxml.workspace = true
oxttl = { workspace = true, features = ["rdf-star"] }
sparesults = { workspace = true, features = ["rdf-star"] }
spargebra = { workspace = true, features = ["rdf-star", "sep-0006"] }
sparql-smith = { workspace = true, features = ["sep-0006"] }
[profile.release]
codegen-units = 1
debug = true
[workspace]
[[bin]]
name = "nquads"
path = "fuzz_targets/nquads.rs"
[[bin]]
name = "n3"
path = "fuzz_targets/n3.rs"
[[bin]]
name = "rdf_xml"
path = "fuzz_targets/rdf_xml.rs"
[[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"
[[bin]]
name = "trig"
path = "fuzz_targets/trig.rs"