diff options
| author | mat <git@matdoes.dev> | 2025-11-12 04:26:02 +0330 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-11-11 18:56:14 -0600 |
| commit | a4312599f7c04709a92b7be238dcf577bafbb14f (patch) | |
| tree | bef58dca34239bac54649ab1e0db2597de10212c /azalea-brigadier | |
| parent | ac2b425615dd6cd8562c290e33b06e553559802d (diff) | |
| download | azalea-drasl-a4312599f7c04709a92b7be238dcf577bafbb14f.tar.xz | |
cleanup
- remove deprecated code
- add `[lints] workspace=true` to every Cargo.toml, to make modifying clippy lints easier for later
- remove some unnecessary #[allow]s
- use Vec3i in some parts of the collision code
Diffstat (limited to 'azalea-brigadier')
| -rw-r--r-- | azalea-brigadier/Cargo.toml | 3 | ||||
| -rw-r--r-- | azalea-brigadier/src/tree/mod.rs | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/azalea-brigadier/Cargo.toml b/azalea-brigadier/Cargo.toml index 3016af79..6a7c9d4f 100644 --- a/azalea-brigadier/Cargo.toml +++ b/azalea-brigadier/Cargo.toml @@ -17,3 +17,6 @@ parking_lot.workspace = true [features] azalea-buf = ["dep:azalea-buf", "dep:azalea-chat", "azalea-chat/azalea-buf"] + +[lints] +workspace = true diff --git a/azalea-brigadier/src/tree/mod.rs b/azalea-brigadier/src/tree/mod.rs index 12a5a50c..a8c12117 100644 --- a/azalea-brigadier/src/tree/mod.rs +++ b/azalea-brigadier/src/tree/mod.rs @@ -305,9 +305,7 @@ impl<S> PartialEq for CommandNode<S> { Some(selfexecutes) => { // idk how to do this better since we can't compare `dyn Fn`s match &other.command { - Some(otherexecutes) => - { - #[allow(ambiguous_wide_pointer_comparisons)] + Some(otherexecutes) => { if !Arc::ptr_eq(selfexecutes, otherexecutes) { return false; } |
