diff --git a/Cargo.toml b/Cargo.toml index c4fe9dd9f..93d51bf0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,6 +41,7 @@ exclude = ["benchmarks", "examples"] [workspace.package] version = "0.7.0-beta" +edition = "2021" rust-version = "1.75" [workspace.dependencies] diff --git a/any_error/Cargo.toml b/any_error/Cargo.toml index fc4ee4d4b..f9946142e 100644 --- a/any_error/Cargo.toml +++ b/any_error/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "throw_error" -edition = "2021" version = "0.2.0-beta" authors = ["Greg Johnston"] license = "MIT" @@ -8,6 +7,7 @@ readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "Utilities for wrapping, throwing, and catching errors." rust-version.workspace = true +edition.workspace = true [dependencies] pin-project-lite = "0.2.14" diff --git a/any_spawner/Cargo.toml b/any_spawner/Cargo.toml index 2b8dcfa3d..081f2073b 100644 --- a/any_spawner/Cargo.toml +++ b/any_spawner/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "any_spawner" -edition = "2021" version = "0.1.1" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "Spawn asynchronous tasks in an executor-independent way." +edition.workspace = true [dependencies] futures = "0.3.30" diff --git a/const_str_slice_concat/Cargo.toml b/const_str_slice_concat/Cargo.toml index c61659264..b4a607b3d 100644 --- a/const_str_slice_concat/Cargo.toml +++ b/const_str_slice_concat/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "const_str_slice_concat" -edition = "2021" version = "0.1.0" authors = ["Greg Johnston"] license = "MIT" @@ -8,5 +7,6 @@ readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "Utilities for const concatenation of string slices." rust-version.workspace = true +edition.workspace = true [dependencies] diff --git a/either_of/Cargo.toml b/either_of/Cargo.toml index d3511a778..e044a157e 100644 --- a/either_of/Cargo.toml +++ b/either_of/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "either_of" -edition = "2021" version = "0.1.0" authors = ["Greg Johnston"] license = "MIT" @@ -8,6 +7,7 @@ readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "Utilities for working with enumerated types that contain one of 2..n other types." rust-version.workspace = true +edition.workspace = true [dependencies] pin-project-lite = "0.2.14" diff --git a/hydration_context/Cargo.toml b/hydration_context/Cargo.toml index 0f6fd1c00..4e5088ce9 100644 --- a/hydration_context/Cargo.toml +++ b/hydration_context/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "hydration_context" -edition = "2021" version = "0.2.0-beta" authors = ["Greg Johnston"] license = "MIT" @@ -8,6 +7,7 @@ readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "Utilities for sharing data between web servers and client-side web applications." rust-version.workspace = true +edition.workspace = true [dependencies] throw_error = { workspace = true } diff --git a/integrations/actix/Cargo.toml b/integrations/actix/Cargo.toml index d91c2ee31..2bf71728a 100644 --- a/integrations/actix/Cargo.toml +++ b/integrations/actix/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "leptos_actix" -version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "Actix integrations for the Leptos web framework." +version = { workspace = true } rust-version.workspace = true +edition.workspace = true [dependencies] actix-http = "3.8" diff --git a/integrations/axum/Cargo.toml b/integrations/axum/Cargo.toml index e1a154724..f57a02ba0 100644 --- a/integrations/axum/Cargo.toml +++ b/integrations/axum/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "leptos_axum" -version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "Axum integrations for the Leptos web framework." +version = { workspace = true } rust-version.workspace = true +edition.workspace = true [dependencies] any_spawner = { workspace = true, features = ["tokio"] } diff --git a/integrations/utils/Cargo.toml b/integrations/utils/Cargo.toml index 406e09363..46cddac42 100644 --- a/integrations/utils/Cargo.toml +++ b/integrations/utils/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "leptos_integration_utils" -version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "Utilities to help build server integrations for the Leptos web framework." +version = { workspace = true } rust-version.workspace = true +edition.workspace = true [dependencies] futures = "0.3.30" diff --git a/leptos/Cargo.toml b/leptos/Cargo.toml index 4e15b2f67..48de54759 100644 --- a/leptos/Cargo.toml +++ b/leptos/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "leptos" version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "Leptos is a full-stack, isomorphic Rust web framework leveraging fine-grained reactivity to build declarative user interfaces." readme = "../README.md" rust-version.workspace = true +edition.workspace = true [dependencies] throw_error = { workspace = true } diff --git a/leptos_config/Cargo.toml b/leptos_config/Cargo.toml index 8d110300d..03e6eac18 100644 --- a/leptos_config/Cargo.toml +++ b/leptos_config/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "leptos_config" -version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "Configuration for the Leptos web framework." readme = "../README.md" +version = { workspace = true } rust-version.workspace = true +edition.workspace = true [dependencies] config = { version = "0.14.0", default-features = false, features = [ diff --git a/leptos_dom/Cargo.toml b/leptos_dom/Cargo.toml index f5af53717..a988edfb1 100644 --- a/leptos_dom/Cargo.toml +++ b/leptos_dom/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "leptos_dom" version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "DOM operations for the Leptos web framework." rust-version.workspace = true +edition.workspace = true [dependencies] tachys = { workspace = true } diff --git a/leptos_hot_reload/Cargo.toml b/leptos_hot_reload/Cargo.toml index f75a45a5d..afaed4667 100644 --- a/leptos_hot_reload/Cargo.toml +++ b/leptos_hot_reload/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "leptos_hot_reload" version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "Utility types used for dev mode and hot-reloading for the Leptos web framework." readme = "../README.md" rust-version.workspace = true +edition.workspace = true [dependencies] anyhow = "1.0" diff --git a/leptos_macro/Cargo.toml b/leptos_macro/Cargo.toml index f7fd18142..fc8dc38b4 100644 --- a/leptos_macro/Cargo.toml +++ b/leptos_macro/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "leptos_macro" version = "0.7.0-beta" -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "view macro for the Leptos web framework." readme = "../README.md" rust-version.workspace = true +edition.workspace = true [lib] proc-macro = true diff --git a/leptos_server/Cargo.toml b/leptos_server/Cargo.toml index 8523bae81..6de490a5a 100644 --- a/leptos_server/Cargo.toml +++ b/leptos_server/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "leptos_server" version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "RPC for the Leptos web framework." readme = "../README.md" rust-version.workspace = true +edition.workspace = true [dependencies] base64 = "0.22.1" diff --git a/meta/Cargo.toml b/meta/Cargo.toml index 4c579a5d9..30a2003dc 100644 --- a/meta/Cargo.toml +++ b/meta/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "leptos_meta" version = "0.7.0-beta" -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "Tools to set HTML metadata in the Leptos web framework." rust-version.workspace = true +edition.workspace = true [dependencies] leptos = { workspace = true } diff --git a/next_tuple/Cargo.toml b/next_tuple/Cargo.toml index b38878d43..02ff32cca 100644 --- a/next_tuple/Cargo.toml +++ b/next_tuple/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "next_tuple" version = "0.1.0-beta" -edition = "2021" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "A trait to build and extend tuples." rust-version.workspace = true +edition.workspace = true [dependencies] diff --git a/oco/Cargo.toml b/oco/Cargo.toml index 5d7cb6d3c..ca4bede59 100644 --- a/oco/Cargo.toml +++ b/oco/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "oco_ref" -edition = "2021" version = "0.2.0" authors = ["Danik Vitek", "Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "A smart pointer for storing immutable values with relatively-cheap cloning. (Like a `Cow` meets an `Rc`!)" rust-version.workspace = true +edition.workspace = true [dependencies] serde = "1.0" diff --git a/or_poisoned/Cargo.toml b/or_poisoned/Cargo.toml index 8a55a8ee0..da33d4949 100644 --- a/or_poisoned/Cargo.toml +++ b/or_poisoned/Cargo.toml @@ -1,6 +1,5 @@ [package] name = "or_poisoned" -edition = "2021" version = "0.1.0" authors = ["Greg Johnston"] license = "MIT" @@ -8,5 +7,6 @@ readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "Unwrap std lock guards in a semantic way." rust-version.workspace = true +edition.workspace = true [dependencies] diff --git a/reactive_graph/Cargo.toml b/reactive_graph/Cargo.toml index 036db0cbf..61d47669c 100644 --- a/reactive_graph/Cargo.toml +++ b/reactive_graph/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "reactive_graph" version = "0.1.0-beta" -edition = "2021" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "A fine-grained reactive graph for building user interfaces." rust-version.workspace = true +edition.workspace = true [dependencies] any_spawner = { workspace = true } diff --git a/reactive_stores/Cargo.toml b/reactive_stores/Cargo.toml index 2e9ca0500..527fc9908 100644 --- a/reactive_stores/Cargo.toml +++ b/reactive_stores/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "reactive_stores" -edition = "2021" version = "0.1.0-beta" rust-version.workspace = true +edition.workspace = true [dependencies] guardian = "1.2" diff --git a/reactive_stores_macro/Cargo.toml b/reactive_stores_macro/Cargo.toml index 069ac1c87..0eab0dd61 100644 --- a/reactive_stores_macro/Cargo.toml +++ b/reactive_stores_macro/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "reactive_stores_macro" -edition = "2021" version = "0.1.0-beta" rust-version.workspace = true +edition.workspace = true [lib] proc-macro = true diff --git a/router/Cargo.toml b/router/Cargo.toml index 5d851933c..4ce06936a 100644 --- a/router/Cargo.toml +++ b/router/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "leptos_router" version = "0.7.0-beta" -edition = "2021" authors = ["Greg Johnston", "Ben Wishovich"] license = "MIT" readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "Router for the Leptos web framework." rust-version.workspace = true +edition.workspace = true [dependencies] leptos = { workspace = true } diff --git a/router_macro/Cargo.toml b/router_macro/Cargo.toml index 523f85e90..acaa15f28 100644 --- a/router_macro/Cargo.toml +++ b/router_macro/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "leptos_router_macro" -edition = "2021" version.workspace = true +edition.workspace = true [lib] proc-macro = true diff --git a/server_fn/Cargo.toml b/server_fn/Cargo.toml index deb63df0b..f65772ceb 100644 --- a/server_fn/Cargo.toml +++ b/server_fn/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "server_fn" -version = { workspace = true } -edition = "2021" authors = ["Greg Johnston", "Ben Wishovich"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "RPC for any web framework." readme = "../README.md" +version = { workspace = true } rust-version.workspace = true +edition.workspace = true [dependencies] throw_error = { workspace = true } diff --git a/server_fn/server_fn_macro_default/Cargo.toml b/server_fn/server_fn_macro_default/Cargo.toml index 5a7c7b540..cfa559983 100644 --- a/server_fn/server_fn_macro_default/Cargo.toml +++ b/server_fn/server_fn_macro_default/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "server_fn_macro_default" -version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "The default implementation of the server_fn macro without a context" +version = { workspace = true } +edition.workspace = true [lib] proc-macro = true diff --git a/server_fn_macro/Cargo.toml b/server_fn_macro/Cargo.toml index ffebdb3ca..b14343fb0 100644 --- a/server_fn_macro/Cargo.toml +++ b/server_fn_macro/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "server_fn_macro" -version = { workspace = true } -edition = "2021" authors = ["Greg Johnston"] license = "MIT" repository = "https://github.com/leptos-rs/leptos" description = "RPC for any web framework." readme = "../README.md" +version = { workspace = true } +edition.workspace = true [dependencies] quote = "1.0" diff --git a/tachys/Cargo.toml b/tachys/Cargo.toml index 68729c900..6f2dab2fa 100644 --- a/tachys/Cargo.toml +++ b/tachys/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "tachys" version = "0.1.0-beta" -edition = "2021" authors = ["Greg Johnston"] license = "MIT" readme = "../README.md" repository = "https://github.com/leptos-rs/leptos" description = "Tools for building reactivity-agnostic, renderer-generic, statically-typed view trees for user interface libraries." rust-version.workspace = true +edition.workspace = true [dependencies] throw_error = { workspace = true }