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
44
5[[package]]5[[package]]
6name = "ahash"6name = "ahash"
7version = "0.7.6"7version = "0.8.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"9checksum = "bf6ccdb167abbf410dcb915cabd428929d7f6a04980b54a11f26a39f1c7f7107"
10dependencies = [10dependencies = [
11 "getrandom",11 "cfg-if 1.0.0",
12 "once_cell",12 "once_cell",
13 "version_check",13 "version_check",
14]14]
189]189]
190190
191[[package]]191[[package]]
192name = "getrandom"192name = "hashbrown"
193version = "0.2.8"193version = "0.12.3"
194source = "registry+https://github.com/rust-lang/crates.io-index"194source = "registry+https://github.com/rust-lang/crates.io-index"
195checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"195checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
196dependencies = [
197 "cfg-if 1.0.0",
198 "libc",
199 "wasi",
200]
201196
202[[package]]197[[package]]
203name = "hashbrown"198name = "hashbrown"
204version = "0.12.3"199version = "0.13.1"
205source = "registry+https://github.com/rust-lang/crates.io-index"200source = "registry+https://github.com/rust-lang/crates.io-index"
206checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"201checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038"
207dependencies = [202dependencies = [
208 "ahash",203 "ahash",
209]204]
230checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"225checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
231dependencies = [226dependencies = [
232 "autocfg",227 "autocfg",
233 "hashbrown",228 "hashbrown 0.12.3",
234]229]
235230
236[[package]]231[[package]]
271 "annotate-snippets",266 "annotate-snippets",
272 "anyhow",267 "anyhow",
273 "bincode",268 "bincode",
274 "hashbrown",269 "hashbrown 0.13.1",
275 "jrsonnet-gcmodule",270 "jrsonnet-gcmodule",
276 "jrsonnet-interner",271 "jrsonnet-interner",
277 "jrsonnet-macros",272 "jrsonnet-macros",
310name = "jrsonnet-interner"305name = "jrsonnet-interner"
311version = "0.5.0"306version = "0.5.0"
312dependencies = [307dependencies = [
313 "hashbrown",308 "hashbrown 0.13.1",
314 "jrsonnet-gcmodule",309 "jrsonnet-gcmodule",
315 "rustc-hash",310 "rustc-hash",
316 "serde",311 "serde",
723source = "registry+https://github.com/rust-lang/crates.io-index"718source = "registry+https://github.com/rust-lang/crates.io-index"
724checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"719checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
725
726[[package]]
727name = "wasi"
728version = "0.11.0+wasi-snapshot-preview1"
729source = "registry+https://github.com/rust-lang/crates.io-index"
730checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
731720
732[[package]]721[[package]]
733name = "winapi"722name = "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
22structdump = { version = "0.2.0", optional = true }22structdump = { version = "0.2.0", optional = true }
2323
24rustc-hash = "1.1"24rustc-hash = "1.1"
25hashbrown = { version = "0.12.3", features = ["inline-more"] }25hashbrown = { version = "0.13.1", features = ["inline-more"] }
2626