Skip to content

Commit

Permalink
fix: relax type constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
mosure committed Nov 15, 2024
1 parent 123f05c commit a12e9cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "bevy_args"
description = "bevy plugin to parse command line arguments and URL query parameters"
version = "1.6.0"
version = "1.6.1"
edition = "2021"
authors = ["mosure <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ where
}


pub fn parse_args<R: Resource + Parser + Serialize + for<'a> Deserialize<'a>>() -> R {
pub fn parse_args<R: Parser + Serialize + for<'a> Deserialize<'a>>() -> R {
#[cfg(target_arch = "wasm32")]
{
let window = web_sys::window().unwrap();
Expand Down

0 comments on commit a12e9cf

Please sign in to comment.