13 releases (breaking)
new 0.10.3+mc1.21.1 | Oct 23, 2024 |
---|---|
0.10.2 | Jun 14, 2024 |
0.10.0 | Apr 24, 2024 |
0.9.0 | Dec 5, 2023 |
0.4.0 | Nov 19, 2022 |
#4 in #azalea
78 downloads per month
Used in 3 crates
(2 directly)
115KB
3K
SLoC
Azalea Brigadier
A Rust port of Mojang's Brigadier command parsing and dispatching library.
Examples
use azalea_brigadier::prelude::*;
use std::sync::Arc;
#[derive(Debug, PartialEq)]
struct CommandSource {}
let mut subject = CommandDispatcher::new();
subject.register(literal("foo").executes(|_| 42));
assert_eq!(
subject
.execute("foo", Arc::new(CommandSource {}))
.unwrap(),
42
);
See the tests for more.
Dependencies
~0.4–5.5MB
~21K SLoC