difftreelog
build upgrade dependencies
in: master
3 files changed
Cargo.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"
crates/jrsonnet-evaluator/Cargo.tomldiffbeforeafterboth1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = ["explaining-traces", "friendly-errors"]11# Rustc-like trace visualization12explaining-traces = ["annotate-snippets"]13# Allows library authors to throw custom errors14anyhow-error = ["anyhow"]15# Provides helpful explaintations to errors, at cost of adding16# more dependencies and slowing down error path17friendly-errors = ["strsim"]1819# Allows to preserve field order in objects20exp-preserve-order = []21# Implements field destructuring22exp-destruct = ["jrsonnet-parser/exp-destruct"]23# Iteration over objects yields [key, value] elements24exp-object-iteration = []2526# Improves performance, and implements some useful things using nightly-only features27nightly = []2829[dependencies]30jrsonnet-interner.workspace = true31jrsonnet-parser.workspace = true32jrsonnet-types.workspace = true33jrsonnet-macros.workspace = true34jrsonnet-gcmodule = { version = "0.3.4" }3536pathdiff = "0.2.1"37hashbrown = "0.12.3"38static_assertions = "1.1"3940rustc-hash = "1.1"4142thiserror = "1.0"4344serde = "1.0"4546anyhow = { version = "1.0", optional = true }47# Friendly errors48strsim = { version = "0.10.0", optional = true }49# Serialized stdlib50bincode = { version = "1.3", optional = true }51# Explaining traces52annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }1[package]2name = "jrsonnet-evaluator"3description = "jsonnet interpreter"4version.workspace = true5authors = ["Yaroslav Bolyukin <iam@lach.pw>"]6license = "MIT"7edition = "2021"89[features]10default = ["explaining-traces", "friendly-errors"]11# Rustc-like trace visualization12explaining-traces = ["annotate-snippets"]13# Allows library authors to throw custom errors14anyhow-error = ["anyhow"]15# Provides helpful explaintations to errors, at cost of adding16# more dependencies and slowing down error path17friendly-errors = ["strsim"]1819# Allows to preserve field order in objects20exp-preserve-order = []21# Implements field destructuring22exp-destruct = ["jrsonnet-parser/exp-destruct"]23# Iteration over objects yields [key, value] elements24exp-object-iteration = []2526# Improves performance, and implements some useful things using nightly-only features27nightly = []2829[dependencies]30jrsonnet-interner.workspace = true31jrsonnet-parser.workspace = true32jrsonnet-types.workspace = true33jrsonnet-macros.workspace = true34jrsonnet-gcmodule = { version = "0.3.4" }3536pathdiff = "0.2.1"37hashbrown = "0.13.1"38static_assertions = "1.1"3940rustc-hash = "1.1"4142thiserror = "1.0"4344serde = "1.0"4546anyhow = { version = "1.0", optional = true }47# Friendly errors48strsim = { version = "0.10.0", optional = true }49# Serialized stdlib50bincode = { version = "1.3", optional = true }51# Explaining traces52annotate-snippets = { version = "0.9.1", features = ["color"], optional = true }crates/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"] }