mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-07-07 12:35:00 +00:00
31 lines
621 B
TOML
31 lines
621 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.34.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"
|