Kaynağa Gözat

Update some version dependencies for derive crates.

parazyd 4 yıl önce
ebeveyn
işleme
44fdddb018

+ 1 - 1
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 = {}

+ 3 - 3
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"]}

+ 2 - 2
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"}