-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
55 lines (44 loc) · 1.15 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 = "puzzle_cube"
version = "0.1.0"
authors = ["Mark Wainwright <[email protected]>"]
license = "MIT"
keywords = ["math", "game", "cube"]
edition= "2021"
[dependencies]
itertools = "0.10.3"
num = "0.4"
num-traits = "0.2"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_with = "1.13"
rand = {version = "0.8"}
getrandom = {version="0.2", features=["js"]}
strum_macros = {version= "0.24"}
strum = {version= "0.24"}
array-const-fn-init = "0.1.1"
log = "0.4"
wasm-logger = "0.2"
yew = { git = "https://github.com/yewstack/yew.git", features = ["csr",] }
yewdux = { git = "https://github.com/intendednull/yewdux.git", features=["future"] }
wasm-bindgen-futures = "0.4"
wasm-bindgen= { version = "0.2", features = ["serde"] }
instant = { version = "0.1", features = [ "wasm-bindgen", "inaccurate" ] }
js-sys = "0.3"
#nalgebra = { version = "*", default-features = false }
[dependencies.web-sys]
version = "0.3"
features = [
"HtmlInputElement",
]
[[bench]]
name = "bench"
harness = false
[profile.release]
panic = 'abort'
codegen-units = 1
lto = true
opt-level = 3
[dev-dependencies]
criterion = "0.3"
ntest = "0.8"
insta = "1.15.0"