-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 978 Bytes
/
Cargo.toml
File metadata and controls
48 lines (44 loc) · 978 Bytes
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "feo-boy"
version = "0.1.0"
authors = [
"Andy Russell <[email protected]>",
"Andrew Fishberg <[email protected]>",
"Max Comstock <[email protected]>",
]
description = "Emulator for the Nintendo Game Boy"
edition = "2021"
[[bin]]
name = "feo-boy"
doc = false
path = "src/main.rs"
[dependencies]
anyhow = "1.0.31"
bitflags = "1.2.1"
byteorder = "1.3.4"
cpal = "0.15.3"
derivative = "2.1.1"
derive_more = "0.99.7"
itertools = "0.10.3"
lazy_static = "1.4.0"
log = "0.4.8"
num_enum = "0.5.1"
pixels = "0.14.0"
pretty_env_logger = "0.4.0"
regex = "1.3.9"
rustyline = "9.1.2"
smallvec = "1.4.0"
structopt = "0.3.14"
thiserror = "1.0.19"
winit = { version = "0.29.0", features = ["rwh_05"] }
winit_input_helper = "0.15.0"
[build-dependencies]
anyhow = "1.0.31"
csv = "1.1.3"
quote = "1.0.7"
serde = { version = "1.0.111", features = ["derive"] }
[dev-dependencies]
indoc = "1.0.3"
pipe = "0.4.0"
proptest = "1.0.0"
quickcheck = "1.0.3"