This is a fast implementation of Perlin noise in Rust.
It has no dependencies, is #![no_std] and #[forbid(unsafe_code)].
#![no_std]
#[forbid(unsafe_code)]