37 lines
666 B
TOML
37 lines
666 B
TOML
[package]
|
|
name = "surrealdb-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = { version= "0.4", features = ["arbitrary-derive"] }
|
|
arbitrary = { version = "1", features = ["derive"] }
|
|
futures = "0.3.28"
|
|
|
|
[dependencies.surrealdb]
|
|
path = ".."
|
|
features = ["kv-mem"]
|
|
default-features = false
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
[[bin]]
|
|
name = "fuzz_sql_parser"
|
|
path = "fuzz_targets/fuzz_sql_parser.rs"
|
|
test = false
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_executor"
|
|
path = "fuzz_targets/fuzz_executor.rs"
|
|
test = false
|
|
doc = false
|