mirror of
https://github.com/ruuda/rcl.git
synced 2025-12-23 04:47:19 +00:00
I'm leaving the Zed extension pointing to the older commit of the Tree-sitter grammar, I'll update that after this version bump. It's a bit awkward to do it this way around, but there are circular dependencies that can't be avoided. Maybe with an attack on SHA1 it can be done in theory, but let's not go there.
73 lines
1.4 KiB
TOML
73 lines
1.4 KiB
TOML
# This file is generated, see build.rcl in the repository root.
|
|
|
|
[dependencies]
|
|
arbitrary = { features = ["derive"], version = "1.3.0" }
|
|
libfuzzer-sys = "0.4.7"
|
|
rcl = { path = ".." }
|
|
serde = "1.0.114"
|
|
serde_json = "1.0.114"
|
|
toml = { default-features = false, features = ["parse"], version = "0.8.10" }
|
|
tree-sitter = "0.20.10"
|
|
tree-sitter-rcl = { path = "../grammar/tree-sitter-rcl" }
|
|
|
|
[package]
|
|
authors = ["Ruud van Asseldonk <dev@veniogames.com>"]
|
|
description = "Fuzz targets and helpers for testing RCL."
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
metadata = { cargo-fuzz = true }
|
|
name = "rcl-fuzz"
|
|
publish = false
|
|
version = "0.8.0"
|
|
|
|
[[bin]]
|
|
name = "smithctl"
|
|
path = "tools/smithctl.rs"
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "fuzz_cli"
|
|
path = "fuzz_targets/fuzz_cli.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "fuzz_decimal"
|
|
path = "fuzz_targets/fuzz_decimal.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "fuzz_escapes"
|
|
path = "fuzz_targets/fuzz_escapes.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "fuzz_is_identifier"
|
|
path = "fuzz_targets/fuzz_is_identifier.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "fuzz_smith"
|
|
path = "fuzz_targets/fuzz_smith.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "fuzz_source"
|
|
path = "fuzz_targets/fuzz_source.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "fuzz_string_len"
|
|
path = "fuzz_targets/fuzz_string_len.rs"
|
|
test = false
|
|
|
|
[[bin]]
|
|
doc = false
|
|
name = "fuzz_tree_sitter"
|
|
path = "fuzz_targets/fuzz_tree_sitter.rs"
|
|
test = false
|