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

difftreelog

build bump version to 0.4.0

Yaroslav Bolyukin2021-07-04parent: #8db09e1.patch.diff
in: master

9 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -65,7 +65,7 @@
 [[package]]
 name = "clap"
 version = "3.0.0-beta.2"
-source = "git+https://github.com/clap-rs/clap?rev=92f744cc49d12d32261010d355dc215a6d2487b9#92f744cc49d12d32261010d355dc215a6d2487b9"
+source = "git+https://github.com/clap-rs/clap?rev=f0c5ea5e1503de5c8e74d8c047a799cf51498e83#f0c5ea5e1503de5c8e74d8c047a799cf51498e83"
 dependencies = [
  "atty",
  "bitflags",
@@ -82,7 +82,7 @@
 [[package]]
 name = "clap_derive"
 version = "3.0.0-beta.2"
-source = "git+https://github.com/clap-rs/clap?rev=92f744cc49d12d32261010d355dc215a6d2487b9#92f744cc49d12d32261010d355dc215a6d2487b9"
+source = "git+https://github.com/clap-rs/clap?rev=f0c5ea5e1503de5c8e74d8c047a799cf51498e83#f0c5ea5e1503de5c8e74d8c047a799cf51498e83"
 dependencies = [
  "heck",
  "proc-macro-error",
@@ -94,7 +94,7 @@
 [[package]]
 name = "clap_generate"
 version = "3.0.0-beta.2"
-source = "git+https://github.com/clap-rs/clap?rev=92f744cc49d12d32261010d355dc215a6d2487b9#92f744cc49d12d32261010d355dc215a6d2487b9"
+source = "git+https://github.com/clap-rs/clap?rev=f0c5ea5e1503de5c8e74d8c047a799cf51498e83#f0c5ea5e1503de5c8e74d8c047a799cf51498e83"
 dependencies = [
  "clap",
 ]
@@ -141,7 +141,7 @@
 
 [[package]]
 name = "jrsonnet"
-version = "0.3.8"
+version = "0.4.0"
 dependencies = [
  "clap",
  "clap_generate",
@@ -154,7 +154,7 @@
 
 [[package]]
 name = "jrsonnet-cli"
-version = "0.3.8"
+version = "0.4.0"
 dependencies = [
  "clap",
  "jrsonnet-evaluator",
@@ -164,7 +164,7 @@
 
 [[package]]
 name = "jrsonnet-evaluator"
-version = "0.3.8"
+version = "0.4.0"
 dependencies = [
  "annotate-snippets",
  "anyhow",
@@ -206,7 +206,7 @@
 
 [[package]]
 name = "jrsonnet-interner"
-version = "0.3.8"
+version = "0.4.0"
 dependencies = [
  "jrsonnet-gc",
  "rustc-hash",
@@ -215,7 +215,7 @@
 
 [[package]]
 name = "jrsonnet-parser"
-version = "0.3.8"
+version = "0.4.0"
 dependencies = [
  "jrsonnet-gc",
  "jrsonnet-interner",
@@ -227,11 +227,11 @@
 
 [[package]]
 name = "jrsonnet-stdlib"
-version = "0.3.8"
+version = "0.4.0"
 
 [[package]]
 name = "jrsonnet-types"
-version = "0.3.8"
+version = "0.4.0"
 dependencies = [
  "jrsonnet-gc",
  "peg",
@@ -239,7 +239,7 @@
 
 [[package]]
 name = "jsonnet"
-version = "0.3.8"
+version = "0.4.0"
 dependencies = [
  "jrsonnet-evaluator",
  "jrsonnet-gc",
@@ -447,9 +447,9 @@
 
 [[package]]
 name = "textwrap"
-version = "0.13.4"
+version = "0.14.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cd05616119e612a8041ef58f2b578906cc2531a6069047ae092cfb86a325d835"
+checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80"
 dependencies = [
  "unicode-width",
 ]
modifiedbindings/jsonnet/Cargo.tomldiffbeforeafterboth
--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -1,15 +1,15 @@
 [package]
 name = "jsonnet"
 description = "Rust implementation of libjsonnet.so"
-version = "0.3.8"
+version = "0.4.0"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
 publish = false
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.8" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.8" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.4.0" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.4.0" }
 jrsonnet-gc = { version = "0.4.2", features = ["derive"] }
 
 [lib]
modifiedcmds/jrsonnet/Cargo.tomldiffbeforeafterboth
--- a/cmds/jrsonnet/Cargo.toml
+++ b/cmds/jrsonnet/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet"
 description = "Rust jsonnet implementation"
-version = "0.3.8"
+version = "0.4.0"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -13,16 +13,16 @@
 mimalloc = ["mimallocator"]
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.8" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.8" }
-jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.3.8" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.4.0" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.4.0" }
+jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.4.0" }
 mimallocator = { version = "0.1.3", optional = true }
 thiserror = "1.0"
 
 [dependencies.clap]
 git = "https://github.com/clap-rs/clap"
-rev = "92f744cc49d12d32261010d355dc215a6d2487b9"
+rev = "f0c5ea5e1503de5c8e74d8c047a799cf51498e83"
 
 [dependencies.clap_generate]
 git = "https://github.com/clap-rs/clap"
-rev = "92f744cc49d12d32261010d355dc215a6d2487b9"
+rev = "f0c5ea5e1503de5c8e74d8c047a799cf51498e83"
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-cli/Cargo.toml
+++ b/crates/jrsonnet-cli/Cargo.toml
@@ -1,17 +1,17 @@
 [package]
 name = "jrsonnet-cli"
 description = "Utilities for building jrsonnet CLIs"
-version = "0.3.8"
+version = "0.4.0"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
 publish = false
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.6", features = ["explaining-traces"] }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.6" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.4.0", features = ["explaining-traces"] }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.4.0" }
 jrsonnet-gc = { version = "0.4.2", features = ["derive", "unstable-config", "unstable-stats"] }
 
 [dependencies.clap]
 git = "https://github.com/clap-rs/clap"
-rev = "92f744cc49d12d32261010d355dc215a6d2487b9"
+rev = "f0c5ea5e1503de5c8e74d8c047a799cf51498e83"
modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
before · crates/jrsonnet-evaluator/Cargo.toml
1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version = "0.3.8"5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2018"89[features]10default = ["serialized-stdlib", "faster", "explaining-traces", "serde-json"]11# Serializes standard library AST instead of parsing them every run12serialized-stdlib = ["serde", "bincode", "jrsonnet-parser/deserialize"]13# Allow to convert Val into serde_json::Value and backwards14serde-json = ["serde", "serde_json"]15# Replace some standard library functions with faster implementations (I.e manifestJsonEx)16# Library works fine without this feature, but requires more memory and time for std function calls17faster = []18# Rustc-like trace visualization19explaining-traces = ["annotate-snippets"]20# Allows library authors to throw custom errors21anyhow-error = ["anyhow"]2223# Unlocks extra features, but works only on unstable24unstable = []2526[dependencies]27jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.3.8" }28jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.8" }29jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.8" }30jrsonnet-types = { path = "../jrsonnet-types", version = "0.3.8" }31pathdiff = "0.2.0"3233md5 = "0.7.0"34base64 = "0.13.0"35rustc-hash = "1.1.0"3637thiserror = "1.0"38jrsonnet-gc = { version = "0.4.2", features = ["derive"] }3940[dependencies.anyhow]41version = "1.0"42optional = true4344# Serialized stdlib45[dependencies.serde]46version = "1.0"47optional = true48[dependencies.bincode]49version = "1.3.1"50optional = true5152# Serde json53[dependencies.serde_json]54version = "1.0"55optional = true5657# Explaining traces58[dependencies.annotate-snippets]59version = "0.9.0"60features = ["color"]61optional = true6263[build-dependencies]64jrsonnet-parser = { path = "../jrsonnet-parser", features = ["serialize", "deserialize"], version = "0.3.8" }65jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.8" }66serde = "1.0"67bincode = "1.3.1"
modifiedcrates/jrsonnet-interner/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-interner/Cargo.toml
+++ b/crates/jrsonnet-interner/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-interner"
 description = "Jrsonnet string interning"
-version = "0.3.8"
+version = "0.4.0"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
modifiedcrates/jrsonnet-parser/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-parser/Cargo.toml
+++ b/crates/jrsonnet-parser/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-parser"
 description = "jsonnet language parser and AST"
-version = "0.3.8"
+version = "0.4.0"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -12,7 +12,7 @@
 deserialize = ["serde"]
 
 [dependencies]
-jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.3.8" }
+jrsonnet-interner = { path = "../jrsonnet-interner", version = "0.4.0" }
 
 peg = "0.7.0"
 unescape = "0.1.0"
@@ -21,4 +21,4 @@
 jrsonnet-gc = { version = "0.4.2", features = ["derive"] }
 
 [dev-dependencies]
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.8" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.4.0" }
modifiedcrates/jrsonnet-stdlib/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-stdlib/Cargo.toml
+++ b/crates/jrsonnet-stdlib/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-stdlib"
 description = "jsonnet standard library packaged as crate"
-version = "0.3.8"
+version = "0.4.0"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
modifiedcrates/jrsonnet-types/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-types/Cargo.toml
+++ b/crates/jrsonnet-types/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-types"
 description = "Jrsonnet type system definition"
-version = "0.3.8"
+version = "0.4.0"
 authors = ["Yaroslav Bolyukin <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"