From 43c1be75841e31859efed4f0f78773e9e44a7d30 Mon Sep 17 00:00:00 2001 From: facundo-villa Date: Fri, 6 Oct 2023 14:36:48 -0300 Subject: [PATCH] Updated toolchain, removed unused features. --- rust-toolchain.toml | 2 +- src/lib.rs | 13 ++----------- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 21b91bac..1ceeb7b5 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,2 +1,2 @@ [toolchain] -channel = "nightly-2023-08-20" \ No newline at end of file +channel = "nightly-2023-10-01" \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index 26f05d5f..1351e2cb 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,19 +1,10 @@ //! # Byte-Engine //! Byte-Engine is a Rust powered game engine. It is designed to be efficient, fast and easy to use; with simple, composable patterns -#![feature(int_roundings)] -#![feature(ptr_sub_ptr)] -#![feature(iter_advance_by)] -#![feature(inherent_associated_types)] -#![feature(arbitrary_self_types)] -#![feature(non_lifetime_binders)] #![feature(downcast_unchecked)] #![feature(const_mut_refs)] -#![feature(extract_if)] -#![feature(try_trait_v2)] -#![feature(const_trait_impl)] -#![warn(missing_docs)] -#![warn(missing_doc_code_examples)] +// #![warn(missing_docs)] # Disable now because we are writing a lot of code +// #![warn(missing_doc_code_examples)] # Disable now because we are writing a lot of code pub mod application; pub mod orchestrator;