28 lines
490 B
TOML
28 lines
490 B
TOML
[package]
|
|
|
|
name = "rust-2048"
|
|
version = "0.0.0"
|
|
authors = ["coeuvre <coeuvre@gmail.com>"]
|
|
|
|
[[bin]]
|
|
|
|
name = "rust-2048"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies.graphics]
|
|
|
|
git = "https://github.com/pistondevelopers/rust-graphics"
|
|
|
|
[dependencies.piston]
|
|
|
|
git = "https://github.com/pistondevelopers/piston/"
|
|
|
|
[dependencies.opengl_graphics]
|
|
|
|
git = "https://github.com/pistondevelopers/opengl_graphics"
|
|
|
|
[dependencies.sdl2_game_window]
|
|
|
|
git = "https://github.com/pistondevelopers/sdl2_game_window"
|
|
|
|
|