diff --git a/Cargo.toml b/Cargo.toml index 758acd124d..1094357881 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,22 +25,22 @@ members = [ exclude = ["benchmarks", "examples"] [workspace.package] -version = "0.6.1" +version = "0.6.2" [workspace.dependencies] -leptos = { path = "./leptos", version = "0.6.1" } -leptos_dom = { path = "./leptos_dom", version = "0.6.1" } -leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.6.1" } -leptos_macro = { path = "./leptos_macro", version = "0.6.1" } -leptos_reactive = { path = "./leptos_reactive", version = "0.6.1" } -leptos_server = { path = "./leptos_server", version = "0.6.1" } -server_fn = { path = "./server_fn", version = "0.6.1" } -server_fn_macro = { path = "./server_fn_macro", version = "0.6.1" } +leptos = { path = "./leptos", version = "0.6.2" } +leptos_dom = { path = "./leptos_dom", version = "0.6.2" } +leptos_hot_reload = { path = "./leptos_hot_reload", version = "0.6.2" } +leptos_macro = { path = "./leptos_macro", version = "0.6.2" } +leptos_reactive = { path = "./leptos_reactive", version = "0.6.2" } +leptos_server = { path = "./leptos_server", version = "0.6.2" } +server_fn = { path = "./server_fn", version = "0.6.2" } +server_fn_macro = { path = "./server_fn_macro", version = "0.6.2" } server_fn_macro_default = { path = "./server_fn/server_fn_macro_default", version = "0.6" } -leptos_config = { path = "./leptos_config", version = "0.6.1" } -leptos_router = { path = "./router", version = "0.6.1" } -leptos_meta = { path = "./meta", version = "0.6.1" } -leptos_integration_utils = { path = "./integrations/utils", version = "0.6.1" } +leptos_config = { path = "./leptos_config", version = "0.6.2" } +leptos_router = { path = "./router", version = "0.6.2" } +leptos_meta = { path = "./meta", version = "0.6.2" } +leptos_integration_utils = { path = "./integrations/utils", version = "0.6.2" } [profile.release] codegen-units = 1 diff --git a/meta/Cargo.toml b/meta/Cargo.toml index 187ed4fe5c..656de688bd 100644 --- a/meta/Cargo.toml +++ b/meta/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_meta" -version = "0.6.1" +version = "0.6.2" edition = "2021" authors = ["Greg Johnston"] license = "MIT" diff --git a/router/Cargo.toml b/router/Cargo.toml index f2a6d815ba..47783d5fc0 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "leptos_router" -version = "0.6.1" +version = "0.6.2" edition = "2021" authors = ["Greg Johnston"] license = "MIT" diff --git a/server_fn/Cargo.toml b/server_fn/Cargo.toml index 9d2f6ebe5b..d7c8c86fc6 100644 --- a/server_fn/Cargo.toml +++ b/server_fn/Cargo.toml @@ -9,7 +9,7 @@ description = "RPC for any web framework." readme = "../README.md" [dependencies] -server_fn_macro_default = "0.6.1" +server_fn_macro_default = { workspace = true } # used for hashing paths in #[server] macro const_format = "0.2" xxhash-rust = { version = "0.8", features = ["const_xxh64"] } @@ -18,7 +18,7 @@ serde = { version = "1", features = ["derive"] } send_wrapper = { version = "0.6", features = ["futures"], optional = true } # registration system -inventory = {version="0.3",optional=true} +inventory = { version = "0.3", optional = true } dashmap = "5" once_cell = "1" @@ -72,11 +72,11 @@ reqwest = { version = "0.11", default-features = false, optional = true, feature url = "2" [features] -default = [ "json", "cbor"] +default = ["json", "cbor"] form-redirects = [] actix = ["ssr", "dep:actix-web", "dep:send_wrapper"] axum = [ - "ssr", + "ssr", "dep:axum", "dep:hyper", "dep:http-body-util", @@ -109,4 +109,21 @@ all-features = true # disables some feature combos for testing in CI [package.metadata.cargo-all-features] denylist = ["rustls", "default-tls", "form-redirects"] -skip_feature_sets = [["actix", "axum"], ["browser", "actix"], ["browser", "axum"], ["browser", "reqwest"]] +skip_feature_sets = [ + [ + "actix", + "axum", + ], + [ + "browser", + "actix", + ], + [ + "browser", + "axum", + ], + [ + "browser", + "reqwest", + ], +]