git.delta.rocks / jrsonnet / refs/commits / 219ced526339

difftreelog

chore bump versions

Lach2020-08-03parent: #1d4b842.patch.diff
in: master

7 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -97,6 +97,15 @@
 checksum = "d6173fd61b610d15a7566dd7b7620775627441c4ab9dac8906e17cb93a24b782"
 
 [[package]]
+name = "hashbrown"
+version = "0.8.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "34f595585f103464d8d2f6e9864682d74c1601fed5e07d62b1c9058dba8246fb"
+dependencies = [
+ "autocfg",
+]
+
+[[package]]
 name = "heck"
 version = "0.3.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -116,16 +125,17 @@
 
 [[package]]
 name = "indexmap"
-version = "1.4.0"
+version = "1.5.0"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c398b2b113b55809ceb9ee3e753fcbac793f1956663f3c36549c1346015c2afe"
+checksum = "5b88cd59ee5f71fea89a62248fc8f387d44400cefe05ef548466d61ced9029a7"
 dependencies = [
  "autocfg",
+ "hashbrown",
 ]
 
 [[package]]
 name = "jrsonnet"
-version = "1.0.0"
+version = "0.3.0"
 dependencies = [
  "clap",
  "jrsonnet-cli",
@@ -145,7 +155,7 @@
 
 [[package]]
 name = "jrsonnet-evaluator"
-version = "1.0.0"
+version = "0.3.0"
 dependencies = [
  "annotate-snippets",
  "base64",
@@ -162,7 +172,7 @@
 
 [[package]]
 name = "jrsonnet-parser"
-version = "1.0.0"
+version = "0.3.0"
 dependencies = [
  "jrsonnet-stdlib",
  "peg",
@@ -174,7 +184,7 @@
 
 [[package]]
 name = "jrsonnet-stdlib"
-version = "1.0.0"
+version = "0.3.0"
 
 [[package]]
 name = "jsonnet"
@@ -235,9 +245,9 @@
 
 [[package]]
 name = "peg"
-version = "0.6.2"
+version = "0.6.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9075875c14bb21f25f11cad4b6ad2e4dd443b8fb83900b2fbdd6ebd744b82e97"
+checksum = "9f76678828272f177ac33b7e2ac2e3e73cc6c1cd1e3e387928aa69562fa51367"
 dependencies = [
  "peg-macros",
  "peg-runtime",
@@ -245,9 +255,9 @@
 
 [[package]]
 name = "peg-macros"
-version = "0.6.2"
+version = "0.6.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c24c165fd39e995246140cc78df55c56c6733ba87e6658cb3e197b8856c62852"
+checksum = "636d60acf97633e48d266d7415a9355d4389cea327a193f87df395d88cd2b14d"
 dependencies = [
  "peg-runtime",
  "proc-macro2",
@@ -256,9 +266,9 @@
 
 [[package]]
 name = "peg-runtime"
-version = "0.6.2"
+version = "0.6.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0c1a2897e69d986c7986747ebad425cf03746ec5e3e09bb3b2600f91301ba864"
+checksum = "9555b1514d2d99d78150d3c799d4c357a3e2c2a8062cd108e93a06d9057629c5"
 
 [[package]]
 name = "proc-macro-error"
modifiedbindings/jsonnet/Cargo.tomldiffbeforeafterboth
--- a/bindings/jsonnet/Cargo.toml
+++ b/bindings/jsonnet/Cargo.toml
@@ -7,8 +7,8 @@
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }
 
 [lib]
 crate-type = ["cdylib"]
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 = "1.0.0"
+version = "0.3.0"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -14,8 +14,8 @@
 mimalloc = []
 
 [dependencies]
-jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0" }
-jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }
+jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0" }
+jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }
 jrsonnet-cli = { path = "../../crates/jrsonnet-cli", version = "0.1.0" }
 # TODO: Fix mimalloc compile errors, and use them
 mimallocator = { version = "0.1.3", optional = true }
modifiedcrates/jrsonnet-cli/Cargo.tomldiffbeforeafterboth
8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html8# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
99
10[dependencies]10[dependencies]
11jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "1.0.0", features = ["explaining-traces"] }11jrsonnet-evaluator = { path = "../../crates/jrsonnet-evaluator", version = "0.3.0", features = ["explaining-traces"] }
12jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "1.0.0" }12jrsonnet-parser = { path = "../../crates/jrsonnet-parser", version = "0.3.0" }
1313
14[dependencies.clap]14[dependencies.clap]
15git = "https://github.com/clap-rs/clap"15git = "https://github.com/clap-rs/clap"
modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-evaluator/Cargo.toml
+++ b/crates/jrsonnet-evaluator/Cargo.toml
@@ -1,7 +1,7 @@
 [package]
 name = "jrsonnet-evaluator"
 description = "jsonnet interpreter"
-version = "1.0.0"
+version = "0.3.0"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -24,12 +24,12 @@
 unstable = []
 
 [dependencies]
-jrsonnet-parser = { path = "../jrsonnet-parser", version = "1.0.0" }
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
+jrsonnet-parser = { path = "../jrsonnet-parser", version = "0.3.0" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }
 pathdiff = "0.2.0"
 
 closure = "0.3.0"
-indexmap = "1.4.0"
+indexmap = "1.5.0"
 
 md5 = "0.7.0"
 base64 = "0.12.3"
@@ -48,8 +48,8 @@
 optional = true
 
 [build-dependencies]
-jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "1.0.0" }
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
+jrsonnet-parser = { path = "../jrsonnet-parser", features = ["dump", "serialize", "deserialize"], version = "0.3.0" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.0" }
 structdump = "0.1.2"
 serde = "1.0.114"
 bincode = "1.3.1"
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 = "1.0.0"
+version = "0.3.0"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"
@@ -14,7 +14,7 @@
 dump = ["structdump", "structdump-derive"]
 
 [dependencies]
-peg = "0.6.2"
+peg = "0.6.3"
 unescape = "0.1.0"
 
 serde = { version = "1.0.114", features = ["derive", "rc"], optional = true }
@@ -22,4 +22,4 @@
 structdump-derive = { version = "0.1.2", optional = true }
 
 [dev-dependencies]
-jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "1.0.0" }
+jrsonnet-stdlib = { path = "../jrsonnet-stdlib", version = "0.3.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 = "1.0.0"
+version = "0.3.0"
 authors = ["Лач <iam@lach.pw>"]
 license = "MIT"
 edition = "2018"