limbo/fuzz/Cargo.toml
Jussi Saurio c25e8c685d
Some checks failed
Run long fuzz tests on Btree / run-long-tests (push) Has been cancelled
Run long fuzz tests on Btree / simple-stress-test (push) Has been cancelled
let fuzz still have its own workspace
2025-08-11 15:13:58 +03:00

32 lines
622 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"] }
turso_core = { path = "../core", features = ["fuzz"] }
rusqlite = { version = "0.37.0", features = ["bundled"] }
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "schema"
path = "fuzz_targets/schema.rs"
[[bin]]
name = "expression"
path = "fuzz_targets/expression.rs"
[[bin]]
name = "cast_real"
path = "fuzz_targets/cast_real.rs"