899e27bafa
This renames: - `get_frame` to `frame` - `get_frame_mut` to `frame_mut` - `set_clear_color` to `clear_color` Which more closely follows convention set by the standard library et al.
23 lines
472 B
TOML
23 lines
472 B
TOML
[package]
|
|
name = "invaders"
|
|
version = "0.1.0"
|
|
authors = ["Jay Oster <jay@kodewerx.org>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[features]
|
|
optimize = ["log/release_max_level_warn"]
|
|
default = ["optimize"]
|
|
|
|
[dependencies]
|
|
byteorder = "1"
|
|
env_logger = "0.10"
|
|
game-loop = { version = "=0.10.1", features = ["winit"] }
|
|
getrandom = "0.2"
|
|
gilrs = "0.10"
|
|
log = "0.4"
|
|
pixels = { path = "../.." }
|
|
simple-invaders = { path = "simple-invaders" }
|
|
winit = "0.27"
|
|
winit_input_helper = "0.13"
|