-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 905 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (24 loc) · 905 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
[package]
name = "githubnator"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gloo-storage = "0.3.0"
gloo-timers = { version = "0.2", features = ["futures" ]}
leptos = { version = "0.8", features = ["csr"] }
#leptos-use = "0.10.10"
web-sys = { version = "0.3", features = ["MouseEvent", "KeyboardEvent", "Event", "EventTarget", "HtmlInputElement", "Window", "Storage"] }
console_error_panic_hook = "0.1"
console_log = "1"
log = "0.4"
wasm-bindgen = "0.2"
leptos_dom = { version = "0.8" }
[dependencies.uuid]
version = "1.10.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
"js", # Add JS feature for WASM
]