-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
64 lines (58 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
64 lines (58 loc) · 1.57 KB
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
55
56
57
58
59
60
61
62
63
64
# SPDX-FileCopyrightText: 2025 Menno van der Graaf <mennovandergraaf@hotmail.com>
# SPDX-License-Identifier: MIT
[package]
name = "wiggers-graaf"
version = "0.1.0"
license = "MIT"
description = "Simple klotski solution space solver"
repository = "https://github.com/Mercotui/wiggers-graaf"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[profile.release]
# Tell `rustc` to optimize for small code size.
opt-level = "s"
[dependencies]
euclid = "0.22.11"
itertools = "0.14.0"
log = "0.4.22"
env_logger = "0.11.5"
anyhow = "1.0.93"
wasm-bindgen = "0.2.100"
js-sys = "0.3.76"
keyframe = "1.1.1"
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.7", optional = false }
futures = "0.3.31"
wasm-bindgen-futures = "0.4.50"
[dependencies.web-sys]
version = "0.3"
features = [
"console",
"Document",
"Window",
"HtmlCanvasElement",
"HtmlDivElement",
"ResizeObserver",
"ResizeObserverEntry",
"ResizeObserverSize",
"TouchEvent",
"PointerEvent",
"MouseScrollEvent",
"CanvasRenderingContext2d",
"OffscreenCanvas",
"OffscreenCanvasRenderingContext2d",
"WebGl2RenderingContext",
"WebGlVertexArrayObject",
"WebGlProgram",
"WebGlShader",
"WebGlBuffer",
"WebGlUniformLocation",
"DomTokenList",
"CssStyleDeclaration",
"DomRect",
"AddEventListenerOptions"
]