celeste_rs 0.5.1

Library for working with files related to Celeste and it's modding scene.
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(
    // I always either have checks or comments where I unwrap to ensure safety
    // and tbh I don't think unwrap is unidiomatic
    clippy::unnecessary_unwrap
)]

//! Celeste save reader and writer
pub mod maps;
pub mod saves;
mod utils;