-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (42 loc) · 883 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
44
45
46
47
[package]
name = "slide-puzzle"
version = "0.3.1"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
console_error_panic_hook = { version = "^0.1.7", optional = true }
fnv = "1.0.7"
getrandom = { version = "0.2.15", features = ["js"] }
log = "0.4.22"
rand = "0.8.5"
rustc-hash = "2.0.0"
thiserror = "1.0.64"
wasm-bindgen = "0.2.95"
wasm-logger = "0.2.0"
web-sys = { version = "0.3.72", features = [
"CssRule",
"CssRuleList",
"CssStyleDeclaration",
"CssStyleSheet",
"Document",
"Element",
"HtmlCollection",
"HtmlDivElement",
"Location",
"MouseEvent",
"StyleSheet",
"StyleSheetList",
"Touch",
"TouchEvent",
"TouchList",
"Window",
] }
[dev-dependencies]
criterion = "0.5.1"
lazy_static = "1.5.0"
[features]
default = ["console_error_panic_hook"]
[[bench]]
name = "solver_benchmark"
harness = false