-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (27 loc) · 885 Bytes
/
Cargo.toml
File metadata and controls
33 lines (27 loc) · 885 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
[package]
name = "implfuture"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [".", "server"]
[[bin]]
name = "app"
[dependencies]
wasm-bindgen = "=0.2.100"
log = "0.4"
stylist = { version = "0.10.1", features = [
"yew",
"macros",
], default-features = false }
yew = { version = "0.19", features = ["hydration"] }
yew-router = { version = "0.16.0" }
time = { version = "0.3.12", features = ["macros", "formatting"] }
lazy_static = "1.4.0"
web-sys = "0.3.58"
[patch.'crates-io']
# yew = { path = "../yew/packages/yew" }
# yew-router = { path = "../yew/packages/yew-router" }
yew = { git = "https://github.com/kcking/yew", branch = "mdx" }
yew-router = { git = "https://github.com/kcking/yew", branch = "mdx" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]