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",
|
|
|
|
"leptos_core",
|
|
|
|
"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
|
|
|
|
|
|
|
# examples
|
2022-10-18 14:16:44 +00:00
|
|
|
"examples/counter",
|
2022-11-14 22:52:05 +00:00
|
|
|
"examples/counter-isomorphic",
|
2022-10-18 14:16:44 +00:00
|
|
|
"examples/counters",
|
|
|
|
"examples/counters-stable",
|
|
|
|
"examples/fetch",
|
2022-11-14 17:03:44 +00:00
|
|
|
"examples/hackernews",
|
2022-11-15 22:08:09 +00:00
|
|
|
"examples/hackernews-axum",
|
2022-10-19 11:35:22 +00:00
|
|
|
"examples/parent-child",
|
2022-10-18 14:16:44 +00:00
|
|
|
"examples/router",
|
|
|
|
"examples/todomvc",
|
2022-11-18 18:25:46 +00:00
|
|
|
"examples/todo-app-sqlite",
|
2022-11-13 20:58:49 +00:00
|
|
|
"examples/view-tests",
|
2022-11-13 13:58:39 +00:00
|
|
|
|
|
|
|
# book
|
|
|
|
"docs/book/project/ch02_getting_started",
|
|
|
|
"docs/book/project/ch03_building_ui",
|
|
|
|
"docs/book/project/ch04_reactivity",
|
2022-10-21 01:44:38 +00:00
|
|
|
]
|
2022-11-12 11:48:38 +00:00
|
|
|
exclude = ["benchmarks"]
|
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]
|
|
|
|
skip_feature_sets = [["csr", "ssr"], ["csr", "hydrate"], ["ssr", "hydrate"]]
|