-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
54 lines (47 loc) · 1.08 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "gameboy"
version = "0.1.0"
authors = ["MarkMcCaskey <rabidwaffle@gmail.com>"]
description = "A Gameboy emulator and related tools"
[badges]
travis-ci = { repository = "MarkMcCaskey/rusty-boy", branch = "master" }
maintainence = {status = "experimental"}
[features]
default = []
asm = []
debugger = []
vulkan = []
development = ["debugger"]
[dependencies]
clap = "^2.31"
sdl2 = "^0.31"
log = "^0.4.1"
log4rs = "^0.8.0"
rand = "^0.4.2"
serde = "^1.0.0"
serde_derive = "^1.0.0"
app_dirs = "^1.1.1"
time = "^0.1"
lazy_static = "^1.0"
vulkano = {version = "0.6.2", optional = true}
vulkano-shader-derive = {version = "0.6.2", optional = true}
winit = {version = "0.7.6", optional = true}
vulkano-win = {version = "0.6.2", optional = true}
nom = {version = "^2.2", optional = true}
ncurses = {version = "5.85.0", optional = true}
[profile.dev]
opt-level = 0
debug = true
rpath = false
lto = false
debug-assertions = true
# codegen-units = 2
panic = 'unwind'
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
# codegen-units = 1
panic = 'unwind'