# uluru **Repository Path**: mirrors_servo/uluru ## Basic Information - **Project Name**: uluru - **Description**: A simple, fast, LRU cache implementation. - **Primary Language**: Unknown - **License**: MPL-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-02-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # uluru A simple, fast, least-recently-used (LRU) cache implementation used for Servo's style system. `LRUCache` uses a fixed-capacity array for storage. It provides `O(1)` insertion, and `O(n)` lookup. It does not require an allocator and can be used in `no_std` crates. It is implemented in 100% safe Rust. * [Documentation](https://docs.rs/uluru) * [crates.io](https://crates.io/crates/uluru) * [Release notes](https://github.com/servo/uluru/releases)