tinyrand_alloc/
lib.rs

1//! Extensions for using `tinyrand` with `alloc`.
2
3#![no_std]
4
5extern crate alloc;
6
7pub mod mock;
8
9pub use mock::*;