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

difftreelog

source

crates/jrsonnet-parser/Cargo.toml547 Bsourcehistory
1[package]2name = "jrsonnet-parser"3description = "jsonnet language parser and AST"4version = "0.4.2"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10exp-destruct = []1112[dependencies]13jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.2" }14jrsonnet-gcmodule = { version = "0.3.4" }1516static_assertions = "1.1"1718peg = "0.8.0"1920serde = { version = "1.0", features = ["derive", "rc"], optional = true }2122[dev-dependencies]23jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.2" }