1 unstable release

Uses new Rust 2024

0.0.1 Sep 3, 2025

#11 in #asset-manager

MIT/Apache

11KB

wip


lib.rs:

Caiman 🐊

A lightweight, engine-agnostic asset manager for Rust applications and games.

Example

use caiman::prelude::*;

fn main() {
    let mut assets = AssetManager::new();
    let handle = assets.load::<Texture>("assets/player.png").unwrap();
    if let Some(texture) = assets.get(&handle) {
        println!("Loaded texture successfully!");
    }
}

Dependencies

~12MB
~303K SLoC