Skip to content

Commit

Permalink
0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gbj committed Jan 26, 2024
1 parent 1b5961e commit 9de34b7
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 20 deletions.
26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leptos_meta"
version = "0.6.1"
version = "0.6.2"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion router/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "leptos_router"
version = "0.6.1"
version = "0.6.2"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"
Expand Down
27 changes: 22 additions & 5 deletions server_fn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand All @@ -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"

Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
],
]

0 comments on commit 9de34b7

Please sign in to comment.