diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:21 +0100 |
commit | 2111c1248b08236a839dcf22036f92735bceb31c (patch) | |
tree | 9313da344b7134a913d1d917162e55b35fe1e74f /stockton-levels/src/lib.rs | |
parent | 102e166b040030b590df83888a1d1a47d0130f10 (diff) |
chore(all): style formatting and clippy fixes
Diffstat (limited to 'stockton-levels/src/lib.rs')
-rw-r--r-- | stockton-levels/src/lib.rs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/stockton-levels/src/lib.rs b/stockton-levels/src/lib.rs index 3026b9d..46484bd 100644 --- a/stockton-levels/src/lib.rs +++ b/stockton-levels/src/lib.rs @@ -1,4 +1,4 @@ -// Copyright (C) Oscar Shrimpton 2019 +// Copyright (C) Oscar Shrimpton 2019 // This program is free software: you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free @@ -13,6 +13,7 @@ // You should have received a copy of the GNU General Public License along // with this program. If not, see <http://www.gnu.org/licenses/>. //! Parses common features from many BSP file formats. +#![allow(incomplete_features)] #![feature(generic_associated_types)] #[macro_use] @@ -20,10 +21,10 @@ extern crate bitflags; extern crate bitvec; extern crate nalgebra as na; +pub mod coords; +pub mod features; mod helpers; +pub mod prelude; pub mod q3; -pub mod types; pub mod traits; -pub mod prelude; -pub mod features; -pub mod coords;
\ No newline at end of file +pub mod types; |