//! Rs standard library — types, bounded collections, fixed-point arithmetic,
//! arena allocator, and bounded channels.
//!
//! This crate is `#![no_std]` by default. Enable the `std` feature for
//! standard library integration and test support.
extern crate alloc;
// Re-export proc-macros when the `macros` feature is enabled.
// This follows the serde pattern: users depend on `rs-lang = { features = ["macros"] }`
// and get both the runtime types and proc-macros through a single crate.
pub use *;
// Re-export core types at crate root for ergonomic access.
pub use ;
/// Prelude module — import everything with `use rs_lang::prelude::*;`
rs/core/src/lib.rs
π 0.0%