From a94d6c6dbf0d25697d855c6fe13c9f68caa7eb34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Thu, 11 Jan 2024 13:22:04 +0100 Subject: [PATCH] Update indexmap. --- Cargo.lock | 19 ++++++++++++++++--- crates/ast/Cargo.toml | 2 +- crates/emitter/Cargo.toml | 2 +- crates/scope/Cargo.toml | 2 +- 4 files changed, 19 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c7c412746..fb3f65a44 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -225,6 +225,18 @@ dependencies = [ "log", ] +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "hashbrown" +version = "0.14.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" + [[package]] name = "heck" version = "0.3.1" @@ -245,11 +257,12 @@ dependencies = [ [[package]] name = "indexmap" -version = "1.3.2" +version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "076f042c5b7b98f31d205f1249267e12a6518c1481e9dae9764af19b707d2292" +checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" dependencies = [ - "autocfg 1.0.0", + "equivalent", + "hashbrown", ] [[package]] diff --git a/crates/ast/Cargo.toml b/crates/ast/Cargo.toml index 3818dfbf7..5175c8181 100644 --- a/crates/ast/Cargo.toml +++ b/crates/ast/Cargo.toml @@ -7,4 +7,4 @@ license = "MIT/Apache-2.0" [dependencies] bumpalo = { version = "3.4.0", features = ["collections"] } -indexmap = "1.0" +indexmap = "2.0" diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index e765ef43b..97400aeb5 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT/Apache-2.0" [dependencies] bumpalo = "3.4.0" byteorder = "1.3.2" -indexmap = "1.0" +indexmap = "2.0" jsparagus-ast = { path = "../ast" } jsparagus-scope = { path = "../scope" } jsparagus-stencil = { path = "../stencil" } diff --git a/crates/scope/Cargo.toml b/crates/scope/Cargo.toml index 551bb40ac..27f8c7e14 100644 --- a/crates/scope/Cargo.toml +++ b/crates/scope/Cargo.toml @@ -6,6 +6,6 @@ edition = "2018" license = "MIT/Apache-2.0" [dependencies] -indexmap = "1.0" +indexmap = "2.0" jsparagus-ast = { path = "../ast" } jsparagus-stencil = { path = "../stencil" }