-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
39 lines (36 loc) · 968 Bytes
/
Cargo.toml
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
[workspace]
members = [
"book-examples/*/*",
"packages/colors",
"packages/icons/*",
"packages/primitives/*/*",
"packages/themes/*",
"scripts",
"stories/*",
]
resolver = "2"
[workspace.package]
authors = ["Rust For Web <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/RustForWeb/radix"
version = "0.0.2"
[workspace.dependencies]
console_log = "1.0.0"
console_error_panic_hook = "0.1.7"
dioxus = "0.5.6"
dioxus-router = "0.5.6"
leptos = "0.6.13"
leptos_dom = "0.6.13"
leptos_router = "0.6.13"
log = "0.4.22"
serde = "1.0.198"
serde_json = "1.0.116"
tailwind_fuse = { version = "0.3.0", features = ["variant"] }
web-sys = "0.3.72"
yew = "0.21.0"
yew-attrs = "0.2.4"
yew-router = "0.18.0"
[patch.crates-io]
yew = { git = "https://github.com/RustForWeb/yew.git", branch = "feature/use-composed-ref" }
yew-router = { git = "https://github.com/RustForWeb/yew.git", branch = "feature/use-composed-ref" }