From 44fdddb01882fd3d43cf44080486d2e063f414de Mon Sep 17 00:00:00 2001 From: parazyd Date: Sat, 26 Mar 2022 14:17:03 +0100 Subject: [PATCH] Update some version dependencies for derive crates. --- contrib/cargo-outdated | 2 +- src/util/derive-internal/Cargo.toml | 6 +++--- src/util/derive/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/contrib/cargo-outdated b/contrib/cargo-outdated index af32ad532..37d23e920 100755 --- a/contrib/cargo-outdated +++ b/contrib/cargo-outdated @@ -21,7 +21,7 @@ CRATESIO_INDEX = join(getenv("HOME"), ".cache", "crates.io-index") PICKLE_CACHE = join(getenv("HOME"), ".cache", "cargo-outdated.pickle") # Set of packages that are ignored by this tool -IGNORES = {"drk-sdk", "darkfi"} +IGNORES = {"drk-sdk", "darkfi", "darkfi-derive", "darkfi-derive-internal"} # Cached paths for metadata to not have to search through the crates index METADATA_PATHS = {} diff --git a/src/util/derive-internal/Cargo.toml b/src/util/derive-internal/Cargo.toml index 9dabca960..e0a80c7c9 100644 --- a/src/util/derive-internal/Cargo.toml +++ b/src/util/derive-internal/Cargo.toml @@ -4,6 +4,6 @@ version = "0.3.0" edition = "2021" [dependencies] -proc-macro2 = "1" -quote = "1" -syn = {version = "1", features = ["full", "fold"]} +proc-macro2 = "1.0.36" +quote = "1.0.17" +syn = {version = "1.0.89", features = ["full", "fold"]} diff --git a/src/util/derive/Cargo.toml b/src/util/derive/Cargo.toml index 07515023b..f13bc52a2 100644 --- a/src/util/derive/Cargo.toml +++ b/src/util/derive/Cargo.toml @@ -8,7 +8,7 @@ proc-macro = true [dependencies] proc-macro-crate = "0.1.5" -proc-macro2 = "1" -syn = {version = "1", features = ["full", "fold"]} +proc-macro2 = "1.0.36" +syn = {version = "1.0.89", features = ["full", "fold"]} darkfi-derive-internal = {path = "../derive-internal"}