mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 14:54:16 +00:00
Simply versioning of interrelated packages
This commit is contained in:
parent
64b6b20606
commit
a03cee3faf
5 changed files with 10 additions and 10 deletions
|
@ -8,10 +8,10 @@ repository = "https://github.com/gbj/leptos"
|
|||
description = "Leptos is a full-stack, isomorphic Rust web framework leveraging fine-grained reactivity to build declarative user interfaces."
|
||||
|
||||
[dependencies]
|
||||
leptos_core = { path = "../leptos_core", version = "0.0.5" }
|
||||
leptos_dom = { path = "../leptos_dom", version = "0.0.4" }
|
||||
leptos_macro = { path = "../leptos_macro", version = "0.0.4" }
|
||||
leptos_reactive = { path = "../leptos_reactive", version = "0.0.4" }
|
||||
leptos_core = { path = "../leptos_core", version = "0.0" }
|
||||
leptos_dom = { path = "../leptos_dom", version = "0.0" }
|
||||
leptos_macro = { path = "../leptos_macro", version = "0.0" }
|
||||
leptos_reactive = { path = "../leptos_reactive", version = "0.0" }
|
||||
|
||||
[features]
|
||||
csr = ["leptos_core/csr", "leptos_macro/csr", "leptos_reactive/csr"]
|
||||
|
|
|
@ -9,9 +9,9 @@ description = "Core functionality for the Leptos web framework."
|
|||
|
||||
[dependencies]
|
||||
ahash = "0.7"
|
||||
leptos_dom = { path = "../leptos_dom", version = "0.0.4" }
|
||||
leptos_macro = { path = "../leptos_macro", version = "0.0.4" }
|
||||
leptos_reactive = { path = "../leptos_reactive", version = "0.0.5" }
|
||||
leptos_dom = { path = "../leptos_dom", version = "0.0" }
|
||||
leptos_macro = { path = "../leptos_macro", version = "0.0" }
|
||||
leptos_reactive = { path = "../leptos_reactive", version = "0.0" }
|
||||
log = "0.4"
|
||||
|
||||
[features]
|
||||
|
|
|
@ -9,7 +9,7 @@ description = "DOM operations for the Leptos web framework."
|
|||
|
||||
[dependencies]
|
||||
js-sys = "0.3"
|
||||
leptos_reactive = { path = "../leptos_reactive", version = "0.0.4" }
|
||||
leptos_reactive = { path = "../leptos_reactive", version = "0.0" }
|
||||
wasm-bindgen = "0.2"
|
||||
wasm-bindgen-futures = "0.4.31"
|
||||
wee_alloc = "0.4.5"
|
||||
|
|
|
@ -8,7 +8,7 @@ repository = "https://github.com/gbj/leptos"
|
|||
description = "Tools to set HTML metadata in the Leptos web framework."
|
||||
|
||||
[dependencies]
|
||||
leptos = { path = "../leptos", version = "0.0.4" }
|
||||
leptos = { path = "../leptos", version = "0.0" }
|
||||
log = "0.4"
|
||||
|
||||
[dependencies.web-sys]
|
||||
|
|
|
@ -8,7 +8,7 @@ repository = "https://github.com/gbj/leptos"
|
|||
description = "Router for the Leptos web framework."
|
||||
|
||||
[dependencies]
|
||||
leptos = { path = "../leptos", version = "0.0.4" }
|
||||
leptos = { path = "../leptos", version = "0.0" }
|
||||
common_macros = "0.1"
|
||||
itertools = "0.10"
|
||||
lazy_static = "1"
|
||||
|
|
Loading…
Reference in a new issue