From 1505a45a35f0533fa0a590e12ae6f3542dd614e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 May 2021 16:52:19 +0200 Subject: [PATCH] Bump gc from 0.4.0 to 0.4.1 (#1248) Bumps [gc](https://github.com/Manishearth/rust-gc) from 0.4.0 to 0.4.1. - [Release notes](https://github.com/Manishearth/rust-gc/releases) - [Changelog](https://github.com/Manishearth/rust-gc/blob/master/CHANGELOG.md) - [Commits](https://github.com/Manishearth/rust-gc/commits) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- boa/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d5d201daf0..eccb5a5b6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -407,18 +407,18 @@ dependencies = [ [[package]] name = "gc" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a37489b04ba0644e62042be92dbc1e4a077d6460d6e9cf681f6581d742f17efa" +checksum = "3edaac0f5832202ebc99520cb77c932248010c4645d20be1dc62d6579f5b3752" dependencies = [ "gc_derive", ] [[package]] name = "gc_derive" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "65efbb0b023f127470376f3c425dde78a27bf0de2c549e92e51760db036a615c" +checksum = "60df8444f094ff7885631d80e78eb7d88c3c2361a98daaabb06256e4500db941" dependencies = [ "proc-macro2", "quote", diff --git a/boa/Cargo.toml b/boa/Cargo.toml index ad790642b5..63aa7e2194 100644 --- a/boa/Cargo.toml +++ b/boa/Cargo.toml @@ -22,7 +22,7 @@ console = [] [dependencies] boa_unicode = { path = "../boa_unicode", version = "0.11.0" } -gc = { version = "0.4.0", features = ["derive"] } +gc = { version = "0.4.1", features = ["derive"] } serde = { version = "1.0.125", features = ["derive"] } serde_json = "1.0.64" rand = "0.8.3"