diff --git a/packages/stylist-core/Cargo.toml b/packages/stylist-core/Cargo.toml index ad67a5b..5dd1d72 100644 --- a/packages/stylist-core/Cargo.toml +++ b/packages/stylist-core/Cargo.toml @@ -9,17 +9,12 @@ authors = [ ] edition = "2021" description = "Stylist is a CSS-in-Rust styling solution for WebAssembly Applications." -keywords = [ - "CSS", - "web", - "css-in-rust", - "yew" -] +keywords = ["CSS", "web", "css-in-rust", "yew"] categories = ["wasm", "web-programming"] readme = "README.md" homepage = "https://github.com/futursolo/stylist-rs" resolver = "2" -rust-version = "1.60" +rust-version = "1.64.0" [dependencies] nom = { version = "7.1.1", optional = true } diff --git a/packages/stylist-core/src/error.rs b/packages/stylist-core/src/error.rs index dabb9d4..d354357 100644 --- a/packages/stylist-core/src/error.rs +++ b/packages/stylist-core/src/error.rs @@ -11,7 +11,7 @@ use thiserror::Error; // // For crates outside of this workspace, `__proc_macro_workaround` will not be enabled // when they use version = "2021" or resolver = "2" as procedural macros can have different feature -// flags. This should be OK for all downstream crates as stylist requires Rust 1.60 which supports +// flags. This should be OK for all downstream crates as stylist requires Rust 1.64.0 which supports // both. #[cfg(not(feature = "__proc_macro_workaround"))] type JsValue = wasm_bindgen::JsValue; diff --git a/packages/stylist-macros/Cargo.toml b/packages/stylist-macros/Cargo.toml index 38f3dd0..2f23abd 100644 --- a/packages/stylist-macros/Cargo.toml +++ b/packages/stylist-macros/Cargo.toml @@ -9,17 +9,12 @@ authors = [ "Martin Molzer ", ] description = "Stylist is a CSS-in-Rust styling solution for WebAssembly Applications." -keywords = [ - "CSS", - "web", - "css-in-rust", - "yew" -] +keywords = ["CSS", "web", "css-in-rust", "yew"] categories = ["wasm", "web-programming"] readme = "README.md" homepage = "https://github.com/futursolo/stylist-rs" resolver = "2" -rust-version = "1.60" +rust-version = "1.64.0" [lib] proc-macro = true @@ -35,10 +30,15 @@ itertools = "0.11.0" log = "0.4.17" [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -stylist-core = { path = "../stylist-core", version = "0.12", features = ["parser", "__proc_macro_workaround"] } +stylist-core = { path = "../stylist-core", version = "0.12", features = [ + "parser", + "__proc_macro_workaround", +] } [target.'cfg(target_arch = "wasm32")'.dependencies] -stylist-core = { path = "../stylist-core", version = "0.12", features = ["parser"] } +stylist-core = { path = "../stylist-core", version = "0.12", features = [ + "parser", +] } [dev-dependencies] env_logger = "0.10.0" diff --git a/packages/stylist/Cargo.toml b/packages/stylist/Cargo.toml index a69c5d4..1c0314d 100644 --- a/packages/stylist/Cargo.toml +++ b/packages/stylist/Cargo.toml @@ -14,7 +14,7 @@ categories = ["wasm", "web-programming"] readme = "../../README.md" homepage = "https://github.com/futursolo/stylist-rs" resolver = "2" -rust-version = "1.60" +rust-version = "1.64.0" [lib] crate-type = ["cdylib", "rlib"]