-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 869 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 869 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
32
33
34
35
36
37
38
39
[package]
name = "website-test"
version = "0.1.0"
edition = "2021"
build = "build.rs"
publish = false
rust-version = "1.84.0"
[dependencies]
yew-agent = { path = "../../packages/yew-agent/" }
[dev-dependencies]
derive_more = { version = "2.0", features = ["from"] }
gloo = "0.11"
gloo-net = "0.6"
js-sys = "0.3"
serde = { version = "1.0", features = ["derive"] }
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
weblog = "0.3.0"
yew = { path = "../../packages/yew/", features = ["ssr", "csr", "serde"] }
yew-autoprops = "0.4.1"
yew-router = { path = "../../packages/yew-router/" }
tokio = { workspace = true, features = ["rt", "macros"] }
[dev-dependencies.web-sys]
version = "0.3"
features = [
"Document",
"Element",
"EventTarget",
"HtmlElement",
"HtmlInputElement",
"HtmlSelectElement",
"DomRect",
]
[build-dependencies]
glob = "0.3"