[package]
edition = "2024"
name = "fandango"
version = "0.1.0"
authors = ["The fandango-rs developers"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An extremely performant, compiler-optimizable form of Fandango for high-complexity input languages."
readme = "README.md"
license = "EUPL-1.2"
repository = "https://github.com/fandango-fuzzer/fandango-rs"
[lib]
name = "fandango"
path = "src/lib.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[dependencies.fandango-core]
version = "0.1.0"
[dependencies.fandango-derive]
version = "0.1.0"
default-features = false
[dependencies.pest]
version = "2.7"
default-features = false
[dependencies.pest_derive]
version = "2.7"
default-features = false
[dependencies.tuple_list]
version = "0.1.3"
[dev-dependencies.rand]
version = "0.9.0"
features = ["default"]
default-features = false
[lints.clippy]
pedantic = "warn"
[lints.rust]
bindings_with_variant_name = "allow"
missing_docs = "warn"
type_alias_bounds = "allow"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(no_opt_indirect)"]
[profile.bench]
opt-level = 3
debug = 2
inherits = "release"
[profile.bench-noopt]
debug-assertions = false
overflow-checks = false
inherits = "dev"
[profile.release]
lto = true
codegen-units = 1