Skip to content

Commit 938fc8c

Browse files
committed
release crates
1 parent 1795ac9 commit 938fc8c

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ members = [
33
"node",
44
"selectors",
55
"c",
6-
"derive"
6+
"derive",
7+
"static-self",
8+
"static-self-derive"
79
]
810

911
[package]
1012
authors = ["Devon Govett <devongovett@gmail.com>"]
1113
name = "lightningcss"
12-
version = "1.0.0-alpha.48"
14+
version = "1.0.0-alpha.49"
1315
description = "A CSS parser, transformer, and minifier"
1416
license = "MPL-2.0"
1517
edition = "2021"
@@ -48,7 +50,7 @@ substitute_variables = ["visitor", "into_owned"]
4850
serde = { version = "1.0.123", features = ["derive"], optional = true }
4951
cssparser = "0.33.0"
5052
cssparser-color = "0.1.0"
51-
parcel_selectors = { version = "0.26.2", path = "./selectors" }
53+
parcel_selectors = { version = "0.26.3", path = "./selectors" }
5254
itertools = "0.10.1"
5355
smallvec = { version = "1.7.0", features = ["union"] }
5456
bitflags = "2.2.1"
@@ -66,7 +68,7 @@ browserslist-rs = { version = "0.12.3", optional = true }
6668
rayon = { version = "1.5.1", optional = true }
6769
dashmap = { version = "5.0.0", optional = true }
6870
serde_json = { version = "1.0.78", optional = true }
69-
lightningcss-derive = { version = "=1.0.0-alpha.41", path = "./derive", optional = true }
71+
lightningcss-derive = { version = "=1.0.0-alpha.42", path = "./derive", optional = true }
7072
schemars = { version = "0.8.11", features = ["smallvec"], optional = true }
7173
static-self = { version = "0.1.0", path = "static-self", optional = true }
7274

derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Devon Govett <devongovett@gmail.com>"]
33
name = "lightningcss-derive"
44
description = "Derive macros for lightningcss"
5-
version = "1.0.0-alpha.41"
5+
version = "1.0.0-alpha.42"
66
license = "MPL-2.0"
77
edition = "2021"
88
repository = "https://github.com/parcel-bundler/lightningcss"

selectors/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "parcel_selectors"
3-
version = "0.26.2"
3+
version = "0.26.3"
44
authors = ["The Servo Project Developers"]
55
documentation = "https://docs.rs/parcel_selectors/"
66
description = "CSS Selectors matching for Rust - forked for lightningcss"

0 commit comments

Comments
 (0)