leptos/Cargo.toml

81 lines
2.6 KiB
TOML
Raw Normal View History

[workspace]
2023-06-30 11:51:07 +00:00
resolver = "2"
members = [
# utilities
"oco",
2024-03-04 01:19:04 +00:00
"any_spawner",
2024-02-05 12:33:43 +00:00
"const_str_slice_concat",
2024-03-04 01:19:04 +00:00
"either_of",
2024-02-05 12:33:43 +00:00
"next_tuple",
2024-03-12 01:19:50 +00:00
"oco",
"or_poisoned",
# core
"hydration_context",
"leptos",
"leptos_dom",
"leptos_config",
"leptos_hot_reload",
"leptos_macro",
"leptos_server",
"reactive_graph",
2024-07-11 00:34:50 +00:00
"reactive_stores",
"reactive_stores_macro",
"server_fn",
"server_fn_macro",
"server_fn/server_fn_macro_default",
2024-02-05 12:33:43 +00:00
"tachys",
# integrations
"integrations/actix",
2022-11-20 22:41:04 +00:00
"integrations/axum",
"integrations/utils",
# libraries
"meta",
2024-03-04 01:19:04 +00:00
"router",
2024-04-27 15:04:23 +00:00
"router_macro",
2024-03-28 01:41:49 +00:00
"any_error",
]
exclude = ["benchmarks", "examples", "projects"]
2022-11-28 05:38:21 +00:00
[workspace.package]
2024-09-08 23:40:32 +00:00
version = "0.7.0-beta5"
edition = "2021"
2024-08-13 21:31:22 +00:00
rust-version = "1.76"
2022-11-28 05:38:21 +00:00
2022-11-28 05:59:29 +00:00
[workspace.dependencies]
2024-09-08 23:40:32 +00:00
throw_error = { path = "./any_error/", version = "0.2.0-beta5" }
2024-08-11 00:01:41 +00:00
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" }
2024-09-08 23:40:32 +00:00
hydration_context = { path = "./hydration_context", version = "0.2.0-beta5" }
leptos = { path = "./leptos", version = "0.7.0-beta5" }
leptos_config = { path = "./leptos_config", version = "0.7.0-beta5" }
leptos_dom = { path = "./leptos_dom", version = "0.7.0-beta5" }
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-beta5" }
leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-beta5" }
leptos_macro = { path = "./leptos_macro", version = "0.7.0-beta5" }
leptos_router = { path = "./router", version = "0.7.0-beta5" }
leptos_router_macro = { path = "./router_macro", version = "0.7.0-beta5" }
leptos_server = { path = "./leptos_server", version = "0.7.0-beta5" }
leptos_meta = { path = "./meta", version = "0.7.0-beta5" }
next_tuple = { path = "./next_tuple", version = "0.1.0-beta5" }
2024-08-11 00:01:41 +00:00
oco_ref = { path = "./oco", version = "0.2.0" }
or_poisoned = { path = "./or_poisoned", version = "0.1.0" }
2024-09-08 23:40:32 +00:00
reactive_graph = { path = "./reactive_graph", version = "0.1.0-beta5" }
reactive_stores = { path = "./reactive_stores", version = "0.1.0-beta5" }
reactive_stores_macro = { path = "./reactive_stores_macro", version = "0.1.0-beta5" }
server_fn = { path = "./server_fn", version = "0.7.0-beta5" }
server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-beta5" }
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-beta5" }
tachys = { path = "./tachys", version = "0.1.0-beta5" }
2022-11-28 05:59:29 +00:00
[profile.release]
codegen-units = 1
lto = true
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"]]