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

difftreelog

fix(build) upload missing Cargo.toml update

Лач2020-06-10parent: #6194e7e.patch.diff
in: master

2 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -103,6 +103,7 @@
 dependencies = [
  "bincode",
  "closure",
+ "indexmap",
  "jsonnet-parser",
  "jsonnet-stdlib",
  "serde",
modifiedcrates/jsonnet-evaluator/Cargo.tomldiffbeforeafterboth
before · crates/jsonnet-evaluator/Cargo.toml
1[package]2name = "jsonnet-evaluator"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[features]10default = ["serialized-stdlib"]11serialized-stdlib = ["serde", "bincode"]1213[dependencies]14jsonnet-parser = { path = "../jsonnet-parser" }15closure = "0.3.0"16jsonnet-stdlib = { path = "../jsonnet-stdlib" }1718[dependencies.serde]19version = "1.0.111"20optional = true2122[dependencies.bincode]23version = "1.2.1"24optional = true2526[build-dependencies]27jsonnet-parser = { path = "../jsonnet-parser" }28jsonnet-stdlib = { path = "../jsonnet-stdlib" }29serde = "1.0.111"30bincode = "1.2.1"