#query-string #command-line-arguments #query-parameters

bevy_args

bevy plugin to parse command line arguments and URL query parameters

9 stable releases

1.6.0 Jul 18, 2024
1.5.0 Jul 6, 2024
1.4.2 May 15, 2024
1.3.0 Feb 18, 2024
1.2.0 Jan 26, 2024

#358 in Game dev

Download history 3/week @ 2024-06-29 181/week @ 2024-07-06 136/week @ 2024-07-13 22/week @ 2024-07-20 62/week @ 2024-07-27 16/week @ 2024-08-03 2/week @ 2024-08-10 42/week @ 2024-08-24 22/week @ 2024-08-31 10/week @ 2024-09-07 1/week @ 2024-09-14 38/week @ 2024-09-21 65/week @ 2024-09-28 9/week @ 2024-10-05 54/week @ 2024-10-12

166 downloads per month
Used in 7 crates

MIT license

15KB
89 lines

bevy_args 🧩

test GitHub License GitHub Last Commit GitHub Releases GitHub Issues Average time to resolve an issue crates.io

bevy plugin to parse command line arguments and URL query parameters into resources

command line arguments

cargo run --example=minimal -- --my-string hello --my-int 42 --my-bool --my-enum another-value

URL query parameters

http://localhost:8080/?my_string=hello&my_int=42&my_bool=true&my_enum=AnotherValue

minimal example

use bevy_args::BevyArgsPlugin;


#[derive(
    Default,
    Debug,
    Resource,
    Serialize,
    Deserialize,
    Parser,
)]
#[command(about = "a minimal example of bevy_args", version, long_about = None)]
pub struct MinimalArgs {
    #[arg(long, default_value = "hello")]
    pub my_string: String,

    #[arg(long, default_value = "42")]
    pub my_int: i32,

    #[arg(long)]
    pub my_bool: bool,
}


pub fn main() {
    let mut app = App::new();

    app.add_plugins(BevyArgsPlugin::<MinimalArgs>::default());
    app.add_systems(Startup, print_minimal_args);

    app.run();
}

fn print_minimal_args(args: Res<MinimalArgs>) {
    println!("{:?}", *args);
}

compatible bevy versions

bevy_args bevy
1.5 0.14
1.3 0.13
1.0 0.12

Dependencies

~32MB
~582K SLoC