From 31749642d29543c86fe3a7600e7c8f23242e8e07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabrice=20Desr=C3=A9?= Date: Sat, 25 Feb 2023 12:01:36 -0800 Subject: [PATCH] Switch to immeta fork to remove arrayvec dupe --- Cargo.lock | 16 +++------------- Cargo.toml | 2 ++ 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a69ff05248f..e29a42d0f7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -151,15 +151,6 @@ version = "0.3.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544" -[[package]] -name = "arrayvec" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd9fd44efafa8690358b7408d253adf110036b88f55672a933f01d616ad9b1b9" -dependencies = [ - "nodrop", -] - [[package]] name = "arrayvec" version = "0.5.1" @@ -2885,11 +2876,10 @@ dependencies = [ [[package]] name = "immeta" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7371aa3c98fad60de2d9b517e2e1ed45593c32b0c77249310fa507749a2a318b" +version = "0.4.1" +source = "git+https://github.com/fabricedesre/immeta.git#7f08e1bd465078baedfb37269aea1612af9bfd5f" dependencies = [ - "arrayvec 0.4.12", + "arrayvec 0.7.1", "byteorder", "num-traits", ] diff --git a/Cargo.toml b/Cargo.toml index 4bb185f4681..64984b8e224 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,6 +30,8 @@ opt-level = 3 mio = { git = "https://github.com/servo/mio.git", branch = "servo-mio-0.6.22" } # surfman-chains has not yet released version 0.7 to crates.io yet. surfman-chains = { git = "https://github.com/servo/surfman-chains.git" } +# fork that bumps crates since the original repo is archived. +immeta = { git = "https://github.com/fabricedesre/immeta.git" } # https://github.com/servo/servo/issues/27515#issuecomment-671474054 [patch."https://github.com/servo/webrender"]