From 83751efd734999fc11316a66317250ca53e76726 Mon Sep 17 00:00:00 2001 From: superwhiskers Date: Wed, 27 Aug 2025 14:41:19 -0500 Subject: initial expression implementation Change-Id: I6a6a69640c133bce112891bba09033b08e7c0dec --- crates/core/src/lib.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'crates/core/src/lib.rs') diff --git a/crates/core/src/lib.rs b/crates/core/src/lib.rs index 330ad58..54c04c5 100644 --- a/crates/core/src/lib.rs +++ b/crates/core/src/lib.rs @@ -1,4 +1,4 @@ -#![no_std] +#![cfg_attr(not(test), no_std)] #![warn( clippy::cargo_common_metadata, clippy::dbg_macro, @@ -54,9 +54,14 @@ clippy::wildcard_imports )] #![feature(allocator_api)] +#![feature(vec_push_within_capacity)] +#![feature(trusted_len)] +#![feature(assert_matches)] //! A highly portable computer algebra system library implemented in Rust extern crate alloc; +pub mod expressions; pub mod hive; +pub mod numerics; -- cgit 1.4.1-2-gfad0