aboutsummaryrefslogtreecommitdiff
path: root/azalea-registry
diff options
context:
space:
mode:
authormat <27899617+mat-1@users.noreply.github.com>2023-07-09 19:11:29 -0500
committerGitHub <noreply@github.com>2023-07-09 19:11:29 -0500
commitd1afd02aa84e7b4450c1607277f078eb2a0f1bf3 (patch)
treeefea9bb7ef7f2064f7c963fd88f394fecec6231b /azalea-registry
parentea8a8fccb6eb39c97f6cb69e11db5f7d0886172e (diff)
downloadazalea-drasl-d1afd02aa84e7b4450c1607277f078eb2a0f1bf3.tar.xz
Update to Bevy 0.11 (#94)
* update to bevy 0.11 * clippy --------- Co-authored-by: mat <git@matdoes.dev>
Diffstat (limited to 'azalea-registry')
-rw-r--r--azalea-registry/azalea-registry-macros/Cargo.toml6
-rwxr-xr-xazalea-registry/azalea-registry-macros/src/lib.rs4
2 files changed, 5 insertions, 5 deletions
diff --git a/azalea-registry/azalea-registry-macros/Cargo.toml b/azalea-registry/azalea-registry-macros/Cargo.toml
index 1bb659ac..daebb4d0 100644
--- a/azalea-registry/azalea-registry-macros/Cargo.toml
+++ b/azalea-registry/azalea-registry-macros/Cargo.toml
@@ -12,9 +12,9 @@ proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-proc-macro2 = "1.0.39"
-quote = "1.0.18"
-syn = "1.0.95"
+proc-macro2 = "1.0.64"
+quote = "1.0.29"
+syn = "2.0.25"
[features]
serde = []
diff --git a/azalea-registry/azalea-registry-macros/src/lib.rs b/azalea-registry/azalea-registry-macros/src/lib.rs
index f8f4feb6..3bf798a5 100755
--- a/azalea-registry/azalea-registry-macros/src/lib.rs
+++ b/azalea-registry/azalea-registry-macros/src/lib.rs
@@ -43,8 +43,8 @@ impl Parse for Registry {
let name = input.parse()?;
let content;
braced!(content in input);
- let items: Punctuated<RegistryItem, Token![,]> =
- content.parse_terminated(RegistryItem::parse)?;
+ let items: Punctuated<RegistryItem, _> =
+ content.parse_terminated(RegistryItem::parse, Token![,])?;
Ok(Registry {
name,