Merge branch 'master' of ssh://gavania.de:23/hodasemi/utilities
This commit is contained in:
commit
cd7747ef65
3 changed files with 4 additions and 4 deletions
|
@ -9,8 +9,8 @@ cgmath = { version = "0.18.0", features = ["swizzle", "serde"] }
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
backtrace = "0.3.67"
|
backtrace = "0.3.67"
|
||||||
assetpath = { git = "https://gavania.de/hodasemi/vulkan_lib.git" }
|
assetpath = { git = "https://gavania.de/hodasemi/vulkan_lib.git" }
|
||||||
anyhow = { version = "1.0.68", features = ["backtrace"] }
|
anyhow = { version = "1.0.70", features = ["backtrace"] }
|
||||||
reprc_proc_macro = { path = "src/reprc_proc_macro" }
|
reprc_proc_macro = { path = "src/reprc_proc_macro" }
|
||||||
|
|
||||||
# networking
|
# networking
|
||||||
serde = { version = "1.0.156", features = ["derive"] }
|
serde = { version = "1.0.159", features = ["derive"] }
|
||||||
|
|
|
@ -9,5 +9,5 @@ proc-macro = true
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
syn = { version = "1.0.109", features = ["full", "fold"] }
|
syn = { version = "2.0.13", features = ["full", "fold"] }
|
||||||
quote = "1.0.26"
|
quote = "1.0.26"
|
|
@ -22,7 +22,7 @@ pub fn reprc_builder(item: TokenStream) -> TokenStream {
|
||||||
.attrs
|
.attrs
|
||||||
.iter()
|
.iter()
|
||||||
.find(|attribute| {
|
.find(|attribute| {
|
||||||
let segments = &attribute.path.segments;
|
let segments = &attribute.path().segments;
|
||||||
|
|
||||||
if segments.len() < 1 {
|
if segments.len() < 1 {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue