mirror of
https://github.com/leptos-rs/leptos
synced 2024-11-10 06:44:17 +00:00
77 lines
2.1 KiB
TOML
77 lines
2.1 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
# utilities
|
|
"oco",
|
|
"any_spawner",
|
|
"const_str_slice_concat",
|
|
"either_of",
|
|
"next_tuple",
|
|
"oco",
|
|
"or_poisoned",
|
|
"routing_utils",
|
|
|
|
# core
|
|
"hydration_context",
|
|
"leptos",
|
|
"leptos_dom",
|
|
"leptos_config",
|
|
"leptos_hot_reload",
|
|
"leptos_macro",
|
|
"leptos_reactive",
|
|
"leptos_server",
|
|
"reactive_graph",
|
|
"server_fn",
|
|
"server_fn_macro",
|
|
"server_fn/server_fn_macro_default",
|
|
"tachys",
|
|
|
|
# integrations
|
|
"integrations/actix",
|
|
"integrations/axum",
|
|
"integrations/utils",
|
|
|
|
# libraries
|
|
"meta",
|
|
"router",
|
|
"routing",
|
|
"is_server",
|
|
"routing_macro",
|
|
]
|
|
exclude = ["benchmarks", "examples"]
|
|
|
|
[workspace.package]
|
|
version = "0.6.13"
|
|
rust-version = "1.75"
|
|
|
|
[workspace.dependencies]
|
|
any_spawner = { path = "./any_spawner/" }
|
|
const_str_slice_concat = { path = "./const_str_slice_concat" }
|
|
either_of = { path = "./either_of/" }
|
|
hydration_context = { path = "./hydration_context" }
|
|
leptos = { path = "./leptos", version = "0.6.5" }
|
|
leptos_config = { path = "./leptos_config", version = "0.6.5" }
|
|
leptos_dom = { path = "./leptos_dom", version = "0.6.5" }
|
|
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.6.5" }
|
|
leptos_integration_utils = { path = "./integrations/utils", version = "0.6.5" }
|
|
leptos_macro = { path = "./leptos_macro", version = "0.6.5" }
|
|
leptos_reactive = { path = "./leptos_reactive", version = "0.6.5" }
|
|
leptos_router = { path = "./router", version = "0.6.5" }
|
|
leptos_server = { path = "./leptos_server", version = "0.6.5" }
|
|
leptos_meta = { path = "./meta", version = "0.6.5" }
|
|
oco = { path = "./oco" }
|
|
or_poisoned = { path = "./or_poisoned" }
|
|
reactive_graph = { path = "./reactive_graph" }
|
|
routing = { path = "./routing" }
|
|
server_fn = { path = "./server_fn", version = "0.6.5" }
|
|
server_fn_macro = { path = "./server_fn_macro", version = "0.6.5" }
|
|
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.6" }
|
|
tachys = { path = "./tachys" }
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
lto = true
|
|
opt-level = 'z'
|
|
|
|
[workspace.metadata.cargo-all-features]
|
|
skip_feature_sets = [["csr", "ssr"], ["csr", "hydrate"], ["ssr", "hydrate"]]
|