Files
turso/fuzz/Cargo.toml
2025-03-23 20:29:55 -03:00

24 lines
480 B
TOML

[package]
name = "limbo-fuzz"
version = "0.0.0"
authors = ["the Limbo authors"]
publish = false
edition = "2021"
[package.metadata]
cargo-fuzz = true
[dependencies]
libfuzzer-sys = "0.4"
arbitrary = { version = "1.4.1", features = ["derive"] }
limbo_core = { path = "../core" }
rusqlite = { version = "0.34.0", features = ["bundled"] }
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "expression"
path = "fuzz_targets/expression.rs"