nestools/
lib.rs

1//! This is a set of relatively simple tools used to assist with the building of NES games.
2//! Currently, its only functionality is in managing sprite sheets.
3//!
4//! All binaries are individually described in their own binary modules.  [The list of binary
5//! modules is namespaced for convenience](binaries/index.html).
6//!
7//! To download releases, you can either use a standard `cargo install`, or you can visit the
8//! [GitHub releases page](https://github.com/Taywee/nestools/releases).  I'll do my best to
9//! support a standard set of targets, but I can't make strong guarantees, as I do all of my
10//! development on my Linux machine.
11
12#[macro_use]
13extern crate serde_derive;
14extern crate lodepng;
15
16pub mod sprites;
17
18// Binary entrypoints
19pub mod binaries;