static-noise 0.1.1

A simple crate for generation static noise at compile time.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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