Update some version dependencies for derive crates.

This commit is contained in:
parazyd
2022-03-26 14:17:03 +01:00
parent bf622aad39
commit 44fdddb018
3 changed files with 6 additions and 6 deletions

View File

@@ -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 = {}

View File

@@ -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"]}

View File

@@ -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"}