git.delta.rocks / jrsonnet / refs/commits / d543e940d74b

difftreelog

source

crates/jrsonnet-peg-parser/Cargo.toml736 Bsourcehistory
1[package]2name = "jrsonnet-peg-parser"3description = "Legacy PEG-based parser producing jrsonnet IR"4keywords = ["jsonnet", "parser", "peg"]5categories = ["parser-implementations"]6authors.workspace = true7edition.workspace = true8license.workspace = true9repository.workspace = true10version.workspace = true1112[dependencies]13jrsonnet-gcmodule.workspace = true14jrsonnet-ir.workspace = true15peg.workspace = true1617[lints]18workspace = true1920[dev-dependencies]21insta.workspace = true2223[features]24default = []25experimental = ["exp-destruct", "exp-null-coaelse", "exp-object-iteration"]26exp-destruct = ["jrsonnet-ir/exp-destruct"]27exp-null-coaelse = ["jrsonnet-ir/exp-null-coaelse"]28exp-object-iteration = ["jrsonnet-ir/exp-object-iteration"]