Skip to content

Commit

Permalink
✨ Bump version && Fixed fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nwrenger committed Aug 9, 2024
1 parent 11c5fff commit 378b33d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gluer"
version = "0.7.1"
version = "0.7.2"
edition = "2021"
authors = ["Nils Wrenger <nils@wrenger.net>"]
description = "A wrapper for Rust frameworks that eliminates redundant type and function definitions between the frontend and backend"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
gluer = "0.7.1"
gluer = "0.7.2"
```

## Features
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,16 +72,16 @@ impl Parse for RouteArgs {
let mut routes = vec![];

let router_ident = input.parse::<syn::Ident>()?;
input.parse::<syn::Token!(,)>()?;
input.parse::<syn::Token![,]>()?;
let url = input.parse::<syn::LitStr>()?;
input.parse::<syn::Token!(,)>()?;
input.parse::<syn::Token![,]>()?;

while !input.is_empty() {
let route = input.parse()?;
routes.push(route);

if !input.is_empty() {
input.parse::<syn::Token!(.)>()?;
input.parse::<syn::Token![.]>()?;
}
}

Expand Down

0 comments on commit 378b33d

Please sign in to comment.