# live2d-rs: Rust bindings for Live2D A rust wrapper around the [Live2D Cubism SDK](https://live2d.github.io/) with extra functionality. The exposed api is completely unstable atm and is very likely to change! ## General usage notes The `live2d-sys` package requires the Live2DCubismCore library to build and link properly. The build script finds the library by reading the environment variable 'CUBISM_CORE' for the path. If you set the variable to 'third-party' for example, then your project layout should look like this: ``` your-project: src/ *.rs third-party/ lib/ windows/ x86/ Live2DCubismCore.lib x86_64/ Live2DCubismCore.lib ... Cargo.toml ```