rama-core 0.3.0

rama service core code, used by rama and service authors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "std")]
#[expect(
    unused_imports,
    reason = "central std/alloc shim re-exports are used feature-dependently"
)]
pub(crate) use ::std::{borrow, boxed, collections, format, string, sync, vec};

#[cfg(not(feature = "std"))]
#[expect(
    unused_imports,
    reason = "central std/alloc shim re-exports are used feature-dependently"
)]
pub(crate) use ::alloc::{borrow, boxed, collections, format, string, sync, vec};