2022-10-18 05:10:57 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2022-10-18 14:16:44 +00:00
|
|
|
# core
|
2022-10-18 05:10:57 +00:00
|
|
|
"leptos",
|
|
|
|
"leptos_dom",
|
2022-12-04 22:50:36 +00:00
|
|
|
"leptos_config",
|
2022-10-18 05:10:57 +00:00
|
|
|
"leptos_macro",
|
|
|
|
"leptos_reactive",
|
2022-10-28 19:41:40 +00:00
|
|
|
"leptos_server",
|
2022-10-18 14:16:44 +00:00
|
|
|
|
2022-11-20 20:25:45 +00:00
|
|
|
# integrations
|
|
|
|
"integrations/actix",
|
2022-11-20 22:41:04 +00:00
|
|
|
"integrations/axum",
|
2022-11-20 20:25:45 +00:00
|
|
|
|
2022-10-18 14:16:44 +00:00
|
|
|
# libraries
|
2022-10-18 05:10:57 +00:00
|
|
|
"meta",
|
|
|
|
"router",
|
2022-10-21 01:44:38 +00:00
|
|
|
]
|
2022-12-31 23:52:19 +00:00
|
|
|
exclude = ["benchmarks", "examples"]
|
2022-10-21 01:44:38 +00:00
|
|
|
|
2022-11-28 05:38:21 +00:00
|
|
|
[workspace.package]
|
2023-02-13 12:49:29 +00:00
|
|
|
version = "0.2.0-alpha"
|
2022-11-28 05:38:21 +00:00
|
|
|
|
2022-11-28 05:59:29 +00:00
|
|
|
[workspace.dependencies]
|
2023-02-13 12:49:29 +00:00
|
|
|
leptos = { path = "./leptos", default-features = false, version = "0.2.0-alpha" }
|
|
|
|
leptos_dom = { path = "./leptos_dom", default-features = false, version = "0.2.0-alpha" }
|
|
|
|
leptos_macro = { path = "./leptos_macro", default-features = false, version = "0.2.0-alpha" }
|
|
|
|
leptos_reactive = { path = "./leptos_reactive", default-features = false, version = "0.2.0-alpha" }
|
|
|
|
leptos_server = { path = "./leptos_server", default-features = false, version = "0.2.0-alpha" }
|
|
|
|
leptos_config = { path = "./leptos_config", default-features = false, version = "0.2.0-alpha" }
|
|
|
|
leptos_router = { path = "./router", version = "0.2.0-alpha" }
|
|
|
|
leptos_meta = { path = "./meta", default-feature = false, version = "0.2.0-alpha" }
|
2022-11-28 05:59:29 +00:00
|
|
|
|
2022-10-21 01:44:38 +00:00
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
2022-11-03 01:46:47 +00:00
|
|
|
opt-level = 'z'
|
2022-11-15 03:19:21 +00:00
|
|
|
|
|
|
|
[workspace.metadata.cargo-all-features]
|
2022-11-28 05:38:21 +00:00
|
|
|
skip_feature_sets = [["csr", "ssr"], ["csr", "hydrate"], ["ssr", "hydrate"]]
|