led/Cargo.toml
Nathan Vegdahl c6cfebdb75 Commented out the GUI modules until I can figure out how to get it working again.
The rust SDL2 bindings have changed in a way that makes the lifetimes
very strict.  This is probably a good thing from a safety standpoint,
but means I'll likely need to re-architect the GUI drawing code.

For now I'm going to leave that on the back-burner and focus on getting
the console version working.
2015-01-29 20:35:19 -08:00

24 lines
472 B
TOML

[package]
name = "Led"
version = "0.0.1"
authors = ["Nathan Vegdahl <cessen@cessen.com>"]
[[bin]]
name = "led"
path = "src/main.rs"
[dependencies.sdl2]
git = "https://github.com/AngryLawyer/rust-sdl2.git"
[dependencies.docopt]
git = "https://github.com/docopt/docopt.rs.git"
[dependencies.rustbox]
git = "https://github.com/gchp/rustbox.git"
[dependencies.freetype-rs]
git = "https://github.com/PistonDevelopers/freetype-rs.git"
[dependencies]
rustc-serialize = "*"