18 releases

new 0.1.16 Dec 6, 2024
0.1.15 Nov 4, 2024
0.1.15-alpha.0 Sep 26, 2024
0.1.14 Apr 27, 2019
0.1.2 Jun 23, 2016

#345 in Parser implementations

Download history 8/week @ 2024-09-09 165/week @ 2024-09-23 28/week @ 2024-09-30 9/week @ 2024-10-07 9/week @ 2024-10-14 13/week @ 2024-10-28 152/week @ 2024-11-04 3/week @ 2024-11-11 3/week @ 2024-11-18 6/week @ 2024-11-25

168 downloads per month

MIT license

510KB
2K SLoC

Build Status Build status Coverage Status Docs

logo

Elasto Mania file handler crate for Rust. Very much still a work in progress.

Requirements

Until a 1.0 release this will only target the latest stable version of Rust.

Installation

Add this in your Cargo.toml file:

[dependencies]
elma = "*"

Documentation

https://docs.rs/elma/

Progress

  • Across support
  • Elma support
    • Level
    • Replay
    • LGR
    • full state.dat support

Usage examples

Level operations

To create a new default level:

extern crate elma;
use elma::lev::*;

fn main () {
    let mut level = Level::new();
    level.save("example.lev", Top10Save::No).unwrap();
}

Screenshot of default level

Dependencies

~2MB
~34K SLoC