-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (35 loc) · 1000 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
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "ccheckers"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "ccheckers"
path = "src/main.rs"
[lib]
name = "ccheckers_wasm"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies.nannou]
version = "0.18.1"
git = "https://github.com/nannou-org/nannou.git"
rev = "287be8a4d075b17332ca0bf34649f5d25e751c00"
features = [ "wasm-experimental" ]
[target."cfg(not(target_arch=\"wasm32\"))".dependencies.nannou_egui]
version = "0.5.0"
git = "https://github.com/nannou-org/nannou.git"
rev = "287be8a4d075b17332ca0bf34649f5d25e751c00"
[dependencies]
itertools = "0.10.5"
strum = "0.24.1"
strum_macros = "0.24.3"
serde = "1.0"
ron = "0.8"
[target."cfg(not(target_arch=\"wasm32\"))".dependencies]
rfd = "0.11"
[target."cfg(target_arch=\"wasm32\")".dependencies]
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4.32"
async-std = "1.10"
console_error_panic_hook = "0.1.5"
once_cell = "1.17"