2023-09-06 21:56:10 -07:00
|
|
|
[package]
|
|
|
|
name = "kcl-lib-fuzz"
|
|
|
|
version = "0.0.0"
|
|
|
|
publish = false
|
|
|
|
edition = "2021"
|
2023-10-31 18:24:19 -05:00
|
|
|
repository = "https://github.com/KittyCAD/modeling-app"
|
2023-11-09 11:01:52 -06:00
|
|
|
rust-version = "1.73"
|
2023-09-06 21:56:10 -07:00
|
|
|
|
|
|
|
[package.metadata]
|
|
|
|
cargo-fuzz = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libfuzzer-sys = "0.4"
|
|
|
|
|
|
|
|
[dependencies.kcl-lib]
|
|
|
|
path = ".."
|
|
|
|
|
|
|
|
# Prevent this from interfering with workspaces
|
|
|
|
[workspace]
|
|
|
|
members = ["."]
|
|
|
|
|
2025-01-02 14:05:46 -05:00
|
|
|
[workspace.lints.clippy]
|
|
|
|
assertions_on_result_states = "warn"
|
|
|
|
dbg_macro = "warn"
|
|
|
|
iter_over_hash_type = "warn"
|
|
|
|
lossy_float_literal = "warn"
|
|
|
|
|
2023-09-06 21:56:10 -07:00
|
|
|
[profile.release]
|
|
|
|
debug = 1
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "parser"
|
|
|
|
path = "fuzz_targets/parser.rs"
|
|
|
|
test = false
|
|
|
|
doc = false
|