-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
47 lines (44 loc) · 1.02 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
[workspace]
resolver = "2"
members = [
"emulator",
"server",
]
[workspace.package]
version = "0.1.0"
repository = "https://github.com/kevinji/chip-8-emulator"
authors = ["Kevin Ji"]
license = "MIT"
edition = "2021"
[workspace.dependencies]
anyhow = "1.0"
axum = { version = "0.7.9", features = ["http2"] }
clap = { version = "4.5", features = ["derive"] }
console_error_panic_hook = "0.1"
getrandom = { version = "0.2", features = ["js"] }
gloo-console = "0.3"
gloo-events = "0.2"
gloo-utils = "0.2"
http = "1.1"
js-sys = "0.3"
rand = "0.8"
tokio = { version = "1.41", features = ["macros", "rt-multi-thread"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["cors", "fs", "set-header", "util"] }
wasm-bindgen = "0.2"
[workspace.dependencies.web-sys]
version = "0.3"
features = [
"CanvasRenderingContext2d",
"Document",
"Element",
"EventTarget",
"HtmlButtonElement",
"HtmlCanvasElement",
"HtmlElement",
"HtmlSelectElement",
"ImageData",
"KeyboardEvent",
"Node",
"Window",
]