Elasto Mania file handler crate for Rust. Very much still a work in progress.
Add this in your Cargo.toml file:
toml
[dependencies]
elma = "*"
http://hexjelly.github.io/elma-rust/elma/
Might be added, maybe out of scope or redunant for this library.
To create a new default level:
```rust extern crate elma; use elma::lev::*;
fn main () { let mut level = Level::new(); level.save("example.lev", false).unwrap(); } ```