aboutsummaryrefslogtreecommitdiff
path: root/stockton-levels/src/lib.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:20 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:20 +0100
commit51168c753286eeee64410ab19dc9f78a4ea479e4 (patch)
treed384093c6fd11b36b189013b663f3500b18ec2a4 /stockton-levels/src/lib.rs
parentd076d3a6fd484e298915cd85609ba9706abacc87 (diff)
refactor(all): use new traits-based levels everywhere else.
unfortunately this also starts using an unstable feature - generic_associated_types see rust-lang/rust#44265
Diffstat (limited to 'stockton-levels/src/lib.rs')
-rw-r--r--stockton-levels/src/lib.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/stockton-levels/src/lib.rs b/stockton-levels/src/lib.rs
index 37d1050..aef802e 100644
--- a/stockton-levels/src/lib.rs
+++ b/stockton-levels/src/lib.rs
@@ -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.
+#![feature(generic_associated_types)]
#[macro_use]
extern crate bitflags;
@@ -22,4 +23,6 @@ extern crate nalgebra as na;
mod helpers;
pub mod q3;
pub mod types;
-pub mod traits; \ No newline at end of file
+pub mod traits;
+pub mod prelude;
+pub mod features; \ No newline at end of file