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

difftreelog

feat(parser) trace feature for peg

Лач2020-05-16parent: #b99878e.patch.diff
in: master

1 file changed

modifiedcrates/jsonnet-parser/Cargo.tomldiffbeforeafterboth
before · crates/jsonnet-parser/Cargo.toml
1[package]2name = "jsonnet-parser"3version = "0.1.0"4authors = ["Лач <iam@lach.pw>"]5edition = "2018"67# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html89[dependencies]10peg = "0.6.2"
after · crates/jsonnet-parser/Cargo.toml
1[package]2name = "jsonnet-parser"3version = "0.1.0"4authors = ["Лач <iam@lach.pw>"]5edition = "2018"67[features]8default = []9# Trace peg token parsing10trace = ["peg/trace"]1112[dependencies]13peg = "0.6.2"