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

difftreelog

fix(bindings) add parser dependency

Лач2020-06-28parent: #af0fd0a.patch.diff
in: master

2 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -166,6 +166,7 @@
 version = "0.1.0"
 dependencies = [
  "jrsonnet-evaluator",
+ "jrsonnet-parser",
  "libc",
 ]
 
modifiedbindings/jsonnet/Cargo.tomldiffbeforeafterboth
before · bindings/jsonnet/Cargo.toml
1[package]2name = "jsonnet"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]10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }11libc = "0.2.71"1213[lib]14crate-type = ["cdylib"]
after · bindings/jsonnet/Cargo.toml
1[package]2name = "jsonnet"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]10jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }11jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }12libc = "0.2.71"1314[lib]15crate-type = ["cdylib"]