forked from tedsteen/nes-bundler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
79 lines (66 loc) · 2.12 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "nes-bundler"
description = ""
version = "1.2.6"
authors = ["Ted Steen <[email protected]>"]
edition = "2021"
publish = false
[features]
default = []
#default = ["netplay", "debug"]
netplay = ["matchbox_socket", "ggrs", "futures-timer", "uuid", "reqwest", "md5"]
debug = ["egui_plot", "puffin", "puffin_egui"]
# Playable framerates in development
[profile.dev]
opt-level = 1
# codegen-backend = "cranelift"
[profile.profiling]
inherits = "release"
debug = true
[profile.release]
codegen-units = 1
lto = true
strip = true
panic = 'abort'
[dependencies]
log = "0.4"
env_logger = "0.11"
anyhow = "1.0"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9"
bitflags = "2"
rand = "0.8"
tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread", "sync"] }
futures = "0.3"
egui = { version = "0.27", default-features = false, features = [
"bytemuck", "default_fonts"
] }
egui_plot = { version = "0.27", optional = true }
puffin = { version = "0.19", optional = true }
puffin_egui = { version = "0.27", optional = true }
egui-winit = "0.27"
egui-wgpu = "0.27"
winit = "0.29"
wgpu = { version = "0.19", features = ["dx12", "metal"] }
raw-window-handle = "0.6"
# sdl2 = { version = "0.36", features = ["bundled", "static-link"] }
sdl2 = { git = "https://github.com/tedsteen/rust-sdl2.git", branch = "for-nes-bundler", features = ["bundled", "static-link"] }
tetanes-core = { git = "https://github.com/lukexor/tetanes.git" }
bincode = "1.3"
thingbuf = "0.1"
# rusticnes-core = { git = "https://github.com/tedsteen/rusticnes-core", branch="for-nes-bundler" }
base64 = "0.22"
directories = "5"
# Netplay deps
matchbox_socket = { version="0.9", features = ["ggrs"], optional = true }
futures-timer = { version = "3", features = ["wasm-bindgen"], optional = true }
ggrs = { version = "0.10", optional = true }
uuid = { version = "1", features = [ "v4" ], optional = true }
reqwest = { version = "0.12", features = ["json"], optional = true }
md5 = { version = "0.7", optional = true }
[build-dependencies]
anyhow = "1.0"
serde_yaml = "0.9"
serde = { version = "1.0", features = ["derive"] }
tinytemplate = "1.2"
winres = "0.1"