mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
80 lines
2.6 KiB
TOML
80 lines
2.6 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
# utilities
|
|
"oco",
|
|
"any_spawner",
|
|
"const_str_slice_concat",
|
|
"either_of",
|
|
"next_tuple",
|
|
"oco",
|
|
"or_poisoned",
|
|
|
|
# core
|
|
"hydration_context",
|
|
"leptos",
|
|
"leptos_dom",
|
|
"leptos_config",
|
|
"leptos_hot_reload",
|
|
"leptos_macro",
|
|
"leptos_server",
|
|
"reactive_graph",
|
|
"reactive_stores",
|
|
"reactive_stores_macro",
|
|
"server_fn",
|
|
"server_fn_macro",
|
|
"server_fn/server_fn_macro_default",
|
|
"tachys",
|
|
|
|
# integrations
|
|
"integrations/actix",
|
|
"integrations/axum",
|
|
"integrations/utils",
|
|
|
|
# libraries
|
|
"meta",
|
|
"router",
|
|
"router_macro",
|
|
"any_error",
|
|
]
|
|
exclude = ["benchmarks", "examples", "projects"]
|
|
|
|
[workspace.package]
|
|
version = "0.7.0-beta2"
|
|
edition = "2021"
|
|
rust-version = "1.76"
|
|
|
|
[workspace.dependencies]
|
|
throw_error = { path = "./any_error/", version = "0.2.0-beta2" }
|
|
any_spawner = { path = "./any_spawner/", version = "0.1.0" }
|
|
const_str_slice_concat = { path = "./const_str_slice_concat", version = "0.1.0" }
|
|
either_of = { path = "./either_of/", version = "0.1.0" }
|
|
hydration_context = { path = "./hydration_context", version = "0.2.0-beta2" }
|
|
leptos = { path = "./leptos", version = "0.7.0-beta2" }
|
|
leptos_config = { path = "./leptos_config", version = "0.7.0-beta2" }
|
|
leptos_dom = { path = "./leptos_dom", version = "0.7.0-beta2" }
|
|
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-beta2" }
|
|
leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-beta2" }
|
|
leptos_macro = { path = "./leptos_macro", version = "0.7.0-beta2" }
|
|
leptos_router = { path = "./router", version = "0.7.0-beta2" }
|
|
leptos_router_macro = { path = "./router_macro", version = "0.7.0-beta2" }
|
|
leptos_server = { path = "./leptos_server", version = "0.7.0-beta2" }
|
|
leptos_meta = { path = "./meta", version = "0.7.0-beta2" }
|
|
next_tuple = { path = "./next_tuple", version = "0.1.0-beta2" }
|
|
oco_ref = { path = "./oco", version = "0.2.0" }
|
|
or_poisoned = { path = "./or_poisoned", version = "0.1.0" }
|
|
reactive_graph = { path = "./reactive_graph", version = "0.1.0-beta2" }
|
|
reactive_stores = { path = "./reactive_stores", version = "0.1.0-beta2" }
|
|
reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.1.0-beta2" }
|
|
server_fn = { path = "./server_fn", version = "0.7.0-beta2" }
|
|
server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-beta2" }
|
|
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-beta2" }
|
|
tachys = { path = "./tachys", version = "0.1.0-beta2" }
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = 'z'
|
|
|
|
[workspace.metadata.cargo-all-features]
|
|
skip_feature_sets = [["csr", "ssr"], ["csr", "hydrate"], ["ssr", "hydrate"]]
|