From d2e2b93c047d7be67d954fb483ba47acbe6a6cef Mon Sep 17 00:00:00 2001 From: steven-omaha <35634100+steven-omaha@users.noreply.github.com> Date: Thu, 12 Jan 2023 23:31:12 +0100 Subject: [PATCH] unpin dependencies --- Cargo.toml | 4 ++-- pacdef_macro/Cargo.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 39aa187..9185285 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,8 +9,8 @@ anyhow = "*" # clap 4 until (at least) 4.0.32 have scrapped actual color support. we stay on 3.x until that's fixed. clap = "3.*" path-absolutize = "*" -regex = "1.7.1" -serde_json = "1.0.91" +regex = "*" +serde_json = "*" pacdef_macro = {path = "pacdef_macro/"} [profile.release] diff --git a/pacdef_macro/Cargo.toml b/pacdef_macro/Cargo.toml index f9e77b6..c8e4c59 100644 --- a/pacdef_macro/Cargo.toml +++ b/pacdef_macro/Cargo.toml @@ -6,9 +6,9 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -proc-macro2 = "1.0.49" -quote = "1.0.23" -syn = "1.0.107" +proc-macro2 = "*" +quote = "*" +syn = "*" [lib] proc-macro = true