chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

13
vendor/const-random/src/lib.rs vendored Normal file
View File

@@ -0,0 +1,13 @@
#![no_std]
/// # Random constants
/// Allows you to insert random constants into your code that will be auto-generated at compile time.
/// A new value will be generated every time the relevent file is re-built.
/// # Example
/// ```
/// use const_random::const_random ;
/// const MY_RANDOM_NUMBER: u32 = const_random!(u32);
/// const MY_RANDOM_BYTES: [u8; 32] = const_random!([u8; 32]);
/// ```
///
/// The following types are supported u8, i8, u16, i16, u32, i32, u64, i64, u128, i128, usize, isize and [u8; N].
pub use const_random_macro::const_random;