24 lines
418 B
TOML
24 lines
418 B
TOML
[package]
|
|
name = "rusty"
|
|
version = "0.1.0"
|
|
authors = ["Thomas Forgione <thomas@forgione.fr>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
clap = "2.32.0"
|
|
sfml = "0.14.0"
|
|
serde = { version = "1.0.89", features = ["derive"] }
|
|
bincode = "1.1.2"
|
|
|
|
[build-dependencies]
|
|
image = { version = "0.21.0" }
|
|
imageproc = "0.18.0"
|
|
|
|
[[bin]]
|
|
name = "rusty-maker"
|
|
path = "src/app/game.rs"
|
|
|
|
[[bin]]
|
|
name = "rusty-editor"
|
|
path = "src/app/editor.rs"
|