mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-22 22:09:22 -05:00
21 lines
782 B
TOML
21 lines
782 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"thaw",
|
|
"thaw_components",
|
|
"thaw_macro",
|
|
"thaw_utils",
|
|
"demo",
|
|
"demo_markdown",
|
|
]
|
|
exclude = ["examples"]
|
|
|
|
[workspace.dependencies]
|
|
thaw = { version = "0.4.0-alpha", path = "./thaw" }
|
|
thaw_components = { version = "0.2.0-alpha", path = "./thaw_components" }
|
|
thaw_macro = { version = "0.1.0-alpha", path = "./thaw_macro" }
|
|
thaw_utils = { version = "0.1.0-alpha", path = "./thaw_utils" }
|
|
|
|
leptos = { git = "https://github.com/leptos-rs/leptos", rev = "20af4928b2fffe017408d3f4e7330db22cf68277" }
|
|
leptos_meta = { git = "https://github.com/leptos-rs/leptos", rev = "20af4928b2fffe017408d3f4e7330db22cf68277" }
|
|
leptos_router = { git = "https://github.com/leptos-rs/leptos", rev = "20af4928b2fffe017408d3f4e7330db22cf68277" }
|