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

difftreelog

build update clap version

Yaroslav Bolyukin2021-03-27parent: #0868231.patch.diff
in: master

2 files changed

modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
before · cmds/jrsonnet/Cargo.toml
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.3.4"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = []11# Use mimalloc as allocator12mimalloc = []1314[dependencies]15jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.4" }16jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.4" }17jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.4" }18# TODO: Fix mimalloc compile errors, and use them19mimallocator = { version = "0.1.3", optional = true }20thiserror = "1.0"2122[dependencies.clap]23git = "https://github.com/clap-rs/clap"24rev = "50fb4ca63dc7e8fb8aa2914de5c8a5b4413f2c62"
after · cmds/jrsonnet/Cargo.toml
1[package]2name = "jrsonnet"3description = "Rust jsonnet implementation"4version = "0.3.4"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = []11# Use mimalloc as allocator12mimalloc = []1314[dependencies]15jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.4" }16jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.4" }17jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.4" }18# TODO: Fix mimalloc compile errors, and use them19mimallocator = { version = "0.1.3", optional = true }20thiserror = "1.0"2122[dependencies.clap]23git = "https://github.com/clap-rs/clap"24rev = "52814b893c87e1c0350cae13fc1988fe2aa9886a"
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -11,4 +11,4 @@
 
 [dependencies.clap]
 git = "https://github.com/clap-rs/clap"
-rev = "50fb4ca63dc7e8fb8aa2914de5c8a5b4413f2c62"
+rev = "52814b893c87e1c0350cae13fc1988fe2aa9886a"