-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (29 loc) · 834 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "rusty-chip8"
version = "1.1.0"
edition = "2021"
authors = ["Cem Eliguzel <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Chip8 emulator/interpreter"
readme = "README.md"
homepage = "https://github.com/rimbi/rusty-chip8"
repository = "https://github.com/rimbi/rusty-chip8"
keywords = ["game", "emulator", "chip8"]
categories = ["games", "emulators"]
[[example]]
name = "rusty-chip8-bevy"
path = "examples/bevy.rs"
[dependencies]
anyhow = "1.0"
log = "0.4.17"
rand = "0.8.5"
[dev-dependencies]
bevy = { version = "0.9.0", features = ["dynamic"] }
env_logger = "0.10.0"
structopt = "0.3"
# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1
# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3