Skip to content

Commit 5e83f34

Browse files
committed
Publish crates
1 parent eb280df commit 5e83f34

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ members = [
1111
[package]
1212
authors = ["Devon Govett <devongovett@gmail.com>"]
1313
name = "lightningcss"
14-
version = "1.0.0-alpha.49"
14+
version = "1.0.0-alpha.50"
1515
description = "A CSS parser, transformer, and minifier"
1616
license = "MPL-2.0"
1717
edition = "2021"
@@ -50,7 +50,7 @@ substitute_variables = ["visitor", "into_owned"]
5050
serde = { version = "1.0.123", features = ["derive"], optional = true }
5151
cssparser = "0.33.0"
5252
cssparser-color = "0.1.0"
53-
parcel_selectors = { version = "0.26.3", path = "./selectors" }
53+
parcel_selectors = { version = "0.26.4", path = "./selectors" }
5454
itertools = "0.10.1"
5555
smallvec = { version = "1.7.0", features = ["union"] }
5656
bitflags = "2.2.1"

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.3"
3+
version = "0.26.4"
44
authors = ["The Servo Project Developers"]
55
documentation = "https://docs.rs/parcel_selectors/"
66
description = "CSS Selectors matching for Rust - forked for lightningcss"

static-self-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "static-self-derive"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
authors = ["Devon Govett <devongovett@gmail.com>","Donny <kdy1997.dev@gmail.com>"]
66
description = "Derive macros for static-self"

static-self/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "static-self"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
authors = ["Devon Govett <devongovett@gmail.com>","Donny <kdy1997.dev@gmail.com>"]
66
description = "A trait for values that can be cloned with a static lifetime"
@@ -12,4 +12,4 @@ repository = "https://github.com/parcel-bundler/lightningcss"
1212

1313
[dependencies]
1414
smallvec = { version = "1.11.1", optional = true }
15-
static-self-derive = { version = "0.1.0", path = "../static-self-derive" }
15+
static-self-derive = { version = "0.1.1", path = "../static-self-derive" }

0 commit comments

Comments
 (0)