Skip to content

Commit

Permalink
Updated toolchain, removed unused features.
Browse files Browse the repository at this point in the history
  • Loading branch information
facundo-villa committed Oct 6, 2023
1 parent c32039b commit 43c1be7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "nightly-2023-08-20"
channel = "nightly-2023-10-01"
13 changes: 2 additions & 11 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -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;
Expand Down

0 comments on commit 43c1be7

Please sign in to comment.