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

difftreelog

build upgrade dependencies

Yaroslav Bolyukin2022-11-20parent: #d388da9.patch.diff
in: master

3 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -4,11 +4,11 @@
 
 [[package]]
 name = "ahash"
-version = "0.7.6"
+version = "0.8.2"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
+checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107"
 dependencies = [
- "getrandom",
+ "cfg-if 1.0.0",
  "once_cell",
  "version_check",
 ]
@@ -189,21 +189,16 @@
 ]
 
 [[package]]
-name = "getrandom"
-version = "0.2.8"
+name = "hashbrown"
+version = "0.12.3"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
-dependencies = [
- "cfg-if 1.0.0",
- "libc",
- "wasi",
-]
+checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
 
 [[package]]
 name = "hashbrown"
-version = "0.12.3"
+version = "0.13.1"
 source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
+checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038"
 dependencies = [
  "ahash",
 ]
@@ -230,7 +225,7 @@
 checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
 dependencies = [
  "autocfg",
- "hashbrown",
+ "hashbrown 0.12.3",
 ]
 
 [[package]]
@@ -271,7 +266,7 @@
  "annotate-snippets",
  "anyhow",
  "bincode",
- "hashbrown",
+ "hashbrown 0.13.1",
  "jrsonnet-gcmodule",
  "jrsonnet-interner",
  "jrsonnet-macros",
@@ -310,7 +305,7 @@
 name = "jrsonnet-interner"
 version = "0.5.0"
 dependencies = [
- "hashbrown",
+ "hashbrown 0.13.1",
  "jrsonnet-gcmodule",
  "rustc-hash",
  "serde",
@@ -722,12 +717,6 @@
 version = "0.9.4"
 source = "registry+https://github.com/rust-lang/crates.io-index"
 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
-
-[[package]]
-name = "wasi"
-version = "0.11.0+wasi-snapshot-preview1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
 
 [[package]]
 name = "winapi"
modifiedcrates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth
34jrsonnet-gcmodule = { version = "0.3.4" }34jrsonnet-gcmodule = { version = "0.3.4" }
3535
36pathdiff = "0.2.1"36pathdiff = "0.2.1"
37hashbrown = "0.12.3"37hashbrown = "0.13.1"
38static_assertions = "1.1"38static_assertions = "1.1"
3939
40rustc-hash = "1.1"40rustc-hash = "1.1"
modifiedcrates/jrsonnet-interner/Cargo.tomldiffbeforeafterboth
--- a/crates/jrsonnet-interner/Cargo.toml
+++ b/crates/jrsonnet-interner/Cargo.toml
@@ -22,4 +22,4 @@
 structdump = { version = "0.2.0", optional = true }
 
 rustc-hash = "1.1"
-hashbrown = { version = "0.12.3", features = ["inline-more"] }
+hashbrown = { version = "0.13.1", features = ["inline-more"] }