-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 1020 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 1020 Bytes
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 = "yew-countdown-solver"
version = "0.1.0"
edition = "2021"
description = "Yew project that solves countdown numbers game"
readme = "README.md"
repository = "https://github.com/newmancodes/yew-countdown-solver"
keywords = ["yew", "trunk"]
categories = ["gui", "wasm", "web-programming"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
yew = { version="0.23", features=["csr"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["fmt"] }
tracing-web = "0.1"
thiserror = "2.0.18"
rand = "0.10.1"
getrandom = { version = "0.4.2", features = ["wasm_js"] }
gloo-timers = { version = "0.4.0", features = ["futures"] }
web-sys = { version = "0.3", features = ["HtmlInputElement", "Window", "Storage", "Performance"] }
wasm-bindgen-futures = "0.4.68"
typed-arena = "2.0.2"
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
stats_alloc = "0.1.10"
[[bench]]
name = "solver_benchmark"
harness = false