Skip to content

Commit

Permalink
release crates
Browse files Browse the repository at this point in the history
  • Loading branch information
devongovett committed Oct 12, 2023
1 parent 1795ac9 commit 938fc8c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Cargo.toml
Expand Up @@ -3,13 +3,15 @@ members = [
"node",
"selectors",
"c",
"derive"
"derive",
"static-self",
"static-self-derive"
]

[package]
authors = ["Devon Govett <devongovett@gmail.com>"]
name = "lightningcss"
version = "1.0.0-alpha.48"
version = "1.0.0-alpha.49"
description = "A CSS parser, transformer, and minifier"
license = "MPL-2.0"
edition = "2021"
Expand Down Expand Up @@ -48,7 +50,7 @@ substitute_variables = ["visitor", "into_owned"]
serde = { version = "1.0.123", features = ["derive"], optional = true }
cssparser = "0.33.0"
cssparser-color = "0.1.0"
parcel_selectors = { version = "0.26.2", path = "./selectors" }
parcel_selectors = { version = "0.26.3", path = "./selectors" }
itertools = "0.10.1"
smallvec = { version = "1.7.0", features = ["union"] }
bitflags = "2.2.1"
Expand All @@ -66,7 +68,7 @@ browserslist-rs = { version = "0.12.3", optional = true }
rayon = { version = "1.5.1", optional = true }
dashmap = { version = "5.0.0", optional = true }
serde_json = { version = "1.0.78", optional = true }
lightningcss-derive = { version = "=1.0.0-alpha.41", path = "./derive", optional = true }
lightningcss-derive = { version = "=1.0.0-alpha.42", path = "./derive", optional = true }
schemars = { version = "0.8.11", features = ["smallvec"], optional = true }
static-self = { version = "0.1.0", path = "static-self", optional = true }

Expand Down
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Expand Up @@ -2,7 +2,7 @@
authors = ["Devon Govett <devongovett@gmail.com>"]
name = "lightningcss-derive"
description = "Derive macros for lightningcss"
version = "1.0.0-alpha.41"
version = "1.0.0-alpha.42"
license = "MPL-2.0"
edition = "2021"
repository = "https://github.com/parcel-bundler/lightningcss"
Expand Down
2 changes: 1 addition & 1 deletion selectors/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "parcel_selectors"
version = "0.26.2"
version = "0.26.3"
authors = ["The Servo Project Developers"]
documentation = "https://docs.rs/parcel_selectors/"
description = "CSS Selectors matching for Rust - forked for lightningcss"
Expand Down

0 comments on commit 938fc8c

Please sign in to comment.