-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1004 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
[package]
name = "rust-wasm-chip8"
version = "0.1.3"
edition = "2021"
rust-version = "1.63.0"
[lib]
crate-type = ["cdylib", "rlib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
log = "0.4.17"
ux = "0.1.5"
# "sync" for wasm according to https://github.com/tokio-rs/tokio/issues/1597#issuecomment-722419609
tokio = { version = "1.20.1", features = ["sync", "time", "macros", "rt"] }
futures = "0.3.23"
# dependency for rand, we want to add features for wasm ("js")
getrandom = { version = "0.2.6", features = ["js", "std"]}
rand = "0.8.4"
anyhow = "1.0.62"
mockall = "0.11.2"
web-sys = { vesion = "0.3.59", features = ["console", "CanvasRenderingContext2d", "Document", "Element", "HtmlCanvasElement", "Window"]}
callback-future = "0.1"
wasm-bindgen = "0.2.82"
wasm-bindgen-futures = "0.4.32"
state = { version = "0.5.3", features = ["tls"] }
rand_chacha = "0.3.1"
fluvio-wasm-timer = "0.2.5"
wasm_mutex = "0.1.1"
lazy_static = "1.4.0"