From 83e4ac1499b548957c554f740934b9b2a02310aa Mon Sep 17 00:00:00 2001 From: tcmal Date: Sun, 25 Aug 2024 17:44:21 +0100 Subject: refactor(all): 2018 edition --- stockton-levels/Cargo.toml | 1 + stockton-levels/src/lib.rs | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'stockton-levels') diff --git a/stockton-levels/Cargo.toml b/stockton-levels/Cargo.toml index facae7d..d39b8d4 100644 --- a/stockton-levels/Cargo.toml +++ b/stockton-levels/Cargo.toml @@ -5,6 +5,7 @@ authors = ["Oscar "] description = "Library for parsing different types of .bsp files." repository = "https://github.com/tcmal/stockton" homepage = "https://github.com/tcmal/stockton" +edition = "2018" [dependencies] nalgebra = "^0.20" diff --git a/stockton-levels/src/lib.rs b/stockton-levels/src/lib.rs index dfe6e52..fa07fbf 100644 --- a/stockton-levels/src/lib.rs +++ b/stockton-levels/src/lib.rs @@ -31,10 +31,9 @@ #![allow(incomplete_features)] #![feature(generic_associated_types)] +extern crate nalgebra as na; #[macro_use] extern crate bitflags; -extern crate bitvec; -extern crate nalgebra as na; pub mod coords; pub mod features; -- cgit v1.2.3