From c29e78b53c77e222bccb4c1190da6ab0c1fc4207 Mon Sep 17 00:00:00 2001 From: Matthieu Vachon Date: Wed, 15 Mar 2023 17:33:40 -0400 Subject: [PATCH] Loosen the `regex` dependency (#2152) Forcing usage of 1.7 is not a requierement as far as I can tell (sadly, `regex` release are not documented, at least I did not find the changelog). By downgarding, we reduce potential conflicts when importing other libraries (`prost` and `slog` where conflicting in my case). --- vulkano/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkano/Cargo.toml b/vulkano/Cargo.toml index f99489de56..68ed8eb9ac 100644 --- a/vulkano/Cargo.toml +++ b/vulkano/Cargo.toml @@ -42,7 +42,7 @@ indexmap = "1.8" once_cell = "1.16" proc-macro2 = "1.0" quote = "1.0" -regex = "1.7" +regex = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" vk-parse = "0.8"