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

difftreelog

chore upgrade clap

Lach2020-08-23parent: #57ad354.patch.diff
in: master

3 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -63,7 +63,7 @@
 [[package]]
 name = "clap"
 version = "3.0.0-beta.1"
-source = "git+https://github.com/clap-rs/clap?rev=ddd55e57dc4b0205e02c121f1116704bd1b51956#ddd55e57dc4b0205e02c121f1116704bd1b51956"
+source = "git+https://github.com/clap-rs/clap?rev=6a56a82629d1a990efb37dae9c75a76e943f22a0#6a56a82629d1a990efb37dae9c75a76e943f22a0"
 dependencies = [
  "atty",
  "bitflags",
@@ -81,7 +81,7 @@
 [[package]]
 name = "clap_derive"
 version = "3.0.0-beta.1"
-source = "git+https://github.com/clap-rs/clap?rev=ddd55e57dc4b0205e02c121f1116704bd1b51956#ddd55e57dc4b0205e02c121f1116704bd1b51956"
+source = "git+https://github.com/clap-rs/clap?rev=6a56a82629d1a990efb37dae9c75a76e943f22a0#6a56a82629d1a990efb37dae9c75a76e943f22a0"
 dependencies = [
  "heck",
  "proc-macro-error",
modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
before · cmds/jrsonnet/Cargo.toml
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.3.0"5authors = ["Лач <iam@lach.pw>"]6license = "MIT"7edition = "2018"89# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html1011[features]12default = []13# Use mimalloc as allocator14mimalloc = []1516[dependencies]17jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" }18jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }19jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.1.0" }20# TODO: Fix mimalloc compile errors, and use them21mimallocator = { version = "0.1.3", optional = true }2223[dependencies.clap]24git = "https://github.com/clap-rs/clap"25rev = "ddd55e57dc4b0205e02c121f1116704bd1b51956"
after · cmds/jrsonnet/Cargo.toml
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.3.0"5authors = ["Лач <iam@lach.pw>"]6license = "MIT"7edition = "2018"89# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html1011[features]12default = []13# Use mimalloc as allocator14mimalloc = []1516[dependencies]17jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" }18jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }19jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.1.0" }20# TODO: Fix mimalloc compile errors, and use them21mimallocator = { version = "0.1.3", optional = true }2223[dependencies.clap]24git = "https://github.com/clap-rs/clap"25rev = "6a56a82629d1a990efb37dae9c75a76e943f22a0"
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -13,4 +13,4 @@
 
 [dependencies.clap]
 git = "https://github.com/clap-rs/clap"
-rev = "ddd55e57dc4b0205e02c121f1116704bd1b51956"
+rev = "6a56a82629d1a990efb37dae9c75a76e943f22a0"