leptos/Cargo.toml

78 lines
2.5 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",
2024-03-04 01:19:04 +00:00
"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",
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"]
2022-11-28 05:38:21 +00:00
[workspace.package]
version = "0.7.0-preview2"
2024-02-28 12:19:09 +00:00
rust-version = "1.75"
2022-11-28 05:38:21 +00:00
2022-11-28 05:59:29 +00:00
[workspace.dependencies]
2024-04-27 15:08:10 +00:00
throw_error = { path = "./any_error/", version = "0.1" }
2024-04-27 15:04:23 +00:00
any_spawner = { path = "./any_spawner/", version = "0.1" }
const_str_slice_concat = { path = "./const_str_slice_concat", version = "0.1" }
2024-04-27 15:15:08 +00:00
either_of = { path = "./either_of/", version = "0.1" }
hydration_context = { path = "./hydration_context", version = "0.1" }
leptos = { path = "./leptos", version = "0.7.0-preview2" }
leptos_config = { path = "./leptos_config", version = "0.7.0-preview2" }
leptos_dom = { path = "./leptos_dom", version = "0.7.0-preview2" }
leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.7.0-preview2" }
leptos_integration_utils = { path = "./integrations/utils", version = "0.7.0-preview2" }
leptos_macro = { path = "./leptos_macro", version = "0.7.0-preview2" }
leptos_reactive = { path = "./leptos_reactive", version = "0.7.0-preview2" }
leptos_router = { path = "./router", version = "0.7.0-preview2" }
leptos_server = { path = "./leptos_server", version = "0.7.0-preview2" }
leptos_meta = { path = "./meta", version = "0.7.0-preview2" }
2024-04-28 23:42:10 +00:00
next_tuple = { path = "./next_tuple", version = "0.1.0-preview" }
2024-04-27 15:04:23 +00:00
oco_ref = { path = "./oco", version = "0.2" }
2024-04-27 15:16:48 +00:00
or_poisoned = { path = "./or_poisoned", version = "0.1" }
reactive_graph = { path = "./reactive_graph", version = "0.1.0-preview" }
server_fn = { path = "./server_fn", version = "0.7.0-preview2" }
server_fn_macro = { path = "./server_fn_macro", version = "0.7.0-preview2" }
server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.7.0-preview2" }
2024-04-27 15:15:08 +00:00
tachys = { path = "./tachys", version = "0.1.0-preview" }
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"]]