https://github.com/michaelvanstraten/static-noise
https://github.com/michaelvanstraten/static-noise
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/michaelvanstraten/static-noise
- Owner: michaelvanstraten
- License: mit
- Created: 2022-09-07T08:05:32.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-07T08:18:54.000Z (over 2 years ago)
- Last Synced: 2025-04-01T16:59:52.016Z (25 days ago)
- Language: Rust
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# static-noise
A simple crate for generation static noise at compile time.
## Example
```rust
let random_company_name: &'static str = static_noise::company_name!();
let random_super_power: &'static str = static_noise::super_power!();
let random_uuid: &'static str = static_noise::uuid!();
```License: MIT