avx-rand 0.1.0

Gerador de números aleatórios nativo - substitui rand
Documentation
# avx-rand


**Native random number generator for the avx ecosystem - replacement for rand.**

[![Crates.io](https://img.shields.io/crates/v/avx-rand.svg)](https://crates.io/crates/avx-rand)
[![Documentation](https://docs.rs/avx-rand/badge.svg)](https://docs.rs/avx-rand)
[![License](https://img.shields.io/badge/license-MIT%20OR%20Apache--2.0-blue.svg)](https://github.com/avilaops/arxis/blob/main/LICENSE-MIT)

## Features


- Xoshiro256** algorithm for high-quality randomness
- Thread-local RNG for thread safety
- Zero dependencies
- Fast and cryptographically secure

## Quick Start


```rust
use avx_rand::{random, random_range};

// Generate random u64
let num: u64 = random();

// Generate random in range
let num = random_range(1..=100);

// Generate random bytes
let mut bytes = [0u8; 32];
fill_bytes(&mut bytes);
```