This repository was archived by the owner on Feb 16, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (49 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
52 lines (49 loc) · 1.24 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
[package]
name = "website"
description = "Personal website of Spencer Imbleau"
version = "0.1.0"
edition = "2024"
rust-version = "1.92.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nuzzles/website"
publish = false
# FIXME: After https://doc.rust-lang.org/cargo/reference/unstable.html#per-package-target
# forced-target = "wasm32-unknown-unknown"
# In the future, hopefully trunk supports `--profile web-profile`,
# and we can rename this profile.
# See: https://github.com/trunk-rs/trunk/issues/605
[profile.release]
opt-level = 'z'
panic = "abort"
lto = true
codegen-units = 1
strip = "debuginfo"
[dependencies]
yew = { version = "0.21.0", features = ["csr"] }
yew-router = "0.18.0"
stylist = { version = "0.13.0", features = ["yew_integration"] }
hex_color = "3.0.0"
url = "2.5.4"
wasm-bindgen = "0.2.100"
gloo-utils = "0.2.0"
gloo-timers = "0.3.0"
gloo-storage = "0.3.0"
serde = "1.0.219"
console_error_panic_hook = "0.1.7"
log = "0.4.27"
console_log = "1.0.0"
once_cell = "1.21.3"
web-sys = { version = "0.3.77", features = [
"CssStyleDeclaration",
"Screen",
"Window",
"HtmlInputElement",
"Storage",
"Location",
"Element",
"Navigator",
"Clipboard",
] }
base64 = "0.22.1"
[dev-dependencies]
wasm-bindgen-test = "0.3.50"