diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a51430..4ed4229 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -# 0.9.1 +# 0.9.3 + +- Updated lightningcss + +# 0.9.2 - Fixed settings parsing of browser version target arrays with a single major version specification (thank you @emnul for reporting the issue) diff --git a/Cargo.lock b/Cargo.lock index f2339ae..4c27b1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -265,9 +265,9 @@ checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" [[package]] name = "lightningcss" -version = "1.0.0-alpha.57" +version = "1.0.0-alpha.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "10bc10261f46b8df263b80e7779d1748b1880488cd951fbb9e096430cead10e6" +checksum = "ec380ca49dc7f6a1cafbdd2de5e587958eac0f67ab26b1e56727fcc60a0c3d4d" dependencies = [ "ahash", "bitflags", @@ -287,10 +287,11 @@ dependencies = [ [[package]] name = "lightningcss-derive" -version = "1.0.0-alpha.42" +version = "1.0.0-alpha.43" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f02a09f0b79d31f1ee13ea55e2f7021037c6b72e0a3ab6c1cb0e9bd7ac8a295" +checksum = "84c12744d1279367caed41739ef094c325d53fb0ffcd4f9b84a368796f870252" dependencies = [ + "convert_case", "proc-macro2", "quote", "syn 1.0.109", @@ -322,9 +323,9 @@ checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" [[package]] name = "parcel_selectors" -version = "0.26.5" +version = "0.26.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce9c47a67c66fee4a5a42756f9784d92941bd0ab2b653539a9e90521a44b66f0" +checksum = "512215cb1d3814e276ace4ec2dbc2cac16726ea3fcac20c22ae1197e16fdd72d" dependencies = [ "bitflags", "cssparser", @@ -636,14 +637,14 @@ dependencies = [ [[package]] name = "turf" -version = "0.9.1" +version = "0.9.3" dependencies = [ "turf_macros", ] [[package]] name = "turf_internals" -version = "0.9.1" +version = "0.9.3" dependencies = [ "getrandom", "grass", @@ -658,7 +659,7 @@ dependencies = [ [[package]] name = "turf_macros" -version = "0.9.1" +version = "0.9.3" dependencies = [ "convert_case", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 14c2a9b..fa6499b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ exclude = [ ] [workspace.package] -version = "0.9.2" +version = "0.9.3" edition = "2021" authors = ["myFavShrimp "] license = "MIT" @@ -34,4 +34,4 @@ publish.workspace = true [dependencies.turf_macros] path = "turf_macros" -version = "0.9.2" +version = "0.9.3" diff --git a/turf_internals/Cargo.toml b/turf_internals/Cargo.toml index 662d464..481e8ef 100644 --- a/turf_internals/Cargo.toml +++ b/turf_internals/Cargo.toml @@ -23,7 +23,7 @@ features = ["derive"] [dependencies.lightningcss] # the alpha version matches newer versions as well if not pinned -version = "=1.0.0-alpha.57" +version = "=1.0.0-alpha.58" default-features = false features = ["grid", "visitor"] diff --git a/turf_macros/Cargo.toml b/turf_macros/Cargo.toml index dafaa74..0c0b6d4 100644 --- a/turf_macros/Cargo.toml +++ b/turf_macros/Cargo.toml @@ -19,4 +19,4 @@ convert_case = "0.6.0" [dependencies.turf_internals] path = "../turf_internals" -version = "0.9.2" +version = "0.9.3"