diff --git a/Cargo.lock b/Cargo.lock index c7c412746..d631e3e7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -66,9 +66,9 @@ dependencies = [ [[package]] name = "bumpalo" -version = "3.4.0" +version = "3.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820" +checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" [[package]] name = "byteorder" diff --git a/crates/ast/Cargo.toml b/crates/ast/Cargo.toml index 3818dfbf7..712479e33 100644 --- a/crates/ast/Cargo.toml +++ b/crates/ast/Cargo.toml @@ -6,5 +6,5 @@ edition = "2018" license = "MIT/Apache-2.0" [dependencies] -bumpalo = { version = "3.4.0", features = ["collections"] } +bumpalo = { version = "3.11.1", features = ["collections"] } indexmap = "1.0" diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index dc7eabdd7..c20404f2c 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "MIT/Apache-2.0" [dependencies] -bumpalo = "3.4.0" +bumpalo = "3.11.1" jsparagus-ast = { path = "../ast" } jsparagus-emitter = { path = "../emitter" } jsparagus-interpreter = { path = "../interpreter" } diff --git a/crates/emitter/Cargo.toml b/crates/emitter/Cargo.toml index e765ef43b..c5d5f8ed2 100644 --- a/crates/emitter/Cargo.toml +++ b/crates/emitter/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT/Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bumpalo = "3.4.0" +bumpalo = "3.11.1" byteorder = "1.3.2" indexmap = "1.0" jsparagus-ast = { path = "../ast" } diff --git a/crates/generated_parser/Cargo.toml b/crates/generated_parser/Cargo.toml index dc4f46950..3ab5ad1c2 100644 --- a/crates/generated_parser/Cargo.toml +++ b/crates/generated_parser/Cargo.toml @@ -6,6 +6,6 @@ edition = "2018" license = "MIT/Apache-2.0" [dependencies] -bumpalo = "3.4.0" +bumpalo = "3.11.1" jsparagus-ast = { path = "../ast" } static_assertions = "1.1.0" \ No newline at end of file diff --git a/crates/interpreter/Cargo.toml b/crates/interpreter/Cargo.toml index 006c9e55f..109157ada 100644 --- a/crates/interpreter/Cargo.toml +++ b/crates/interpreter/Cargo.toml @@ -10,7 +10,7 @@ jsparagus-emitter = { path = "../emitter" } jsparagus-stencil = { path = "../stencil" } [dev-dependencies] -bumpalo = "3.4.0" +bumpalo = "3.11.1" jsparagus-ast = { path = "../ast" } jsparagus-parser = { path = "../parser" } diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index 42799db73..587a45711 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -6,7 +6,7 @@ edition = "2018" license = "MIT/Apache-2.0" [dependencies] -bumpalo = "3.4.0" +bumpalo = "3.11.1" jsparagus-ast = { path = "../ast" } jsparagus-json-log = { path = "../json-log" } jsparagus-generated-parser = { path = "../generated_parser" }