Skip to content

Commit 75376cd

Browse files
authoredFeb 10, 2023
chore: Bump swc_css_* (#6924)
1 parent 29fee38 commit 75376cd

File tree

12 files changed

+91
-91
lines changed

12 files changed

+91
-91
lines changed
 

‎Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎crates/swc_core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "swc_core"
88
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.59.23"
9+
version = "0.59.24"
1010
[package.metadata.docs.rs]
1111
features = [
1212
"common_perf",
@@ -350,7 +350,7 @@ swc_css_ast = { optional = true, version = "0.134.2", path
350350
swc_css_codegen = { optional = true, version = "0.144.2", path = "../swc_css_codegen" }
351351
swc_css_minifier = { optional = true, version = "0.109.2", path = "../swc_css_minifier" }
352352
swc_css_modules = { optional = true, version = "0.21.3", path = "../swc_css_modules" }
353-
swc_css_parser = { optional = true, version = "0.143.2", path = "../swc_css_parser" }
353+
swc_css_parser = { optional = true, version = "0.143.3", path = "../swc_css_parser" }
354354
swc_css_prefixer = { optional = true, version = "0.146.2", path = "../swc_css_prefixer" }
355355
swc_css_utils = { optional = true, version = "0.131.2", path = "../swc_css_utils/" }
356356
swc_css_visit = { optional = true, version = "0.133.2", path = "../swc_css_visit" }

‎crates/swc_css/Cargo.toml

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
[package]
2-
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
3-
description = "CSS apis for rust"
2+
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
3+
description = "CSS apis for rust"
44
documentation = "https://rustdoc.swc.rs/swc_css/"
5-
edition = "2021"
6-
license = "Apache-2.0"
7-
name = "swc_css"
8-
repository = "https://github.com/swc-project/swc.git"
9-
version = "0.149.3"
5+
edition = "2021"
6+
license = "Apache-2.0"
7+
name = "swc_css"
8+
repository = "https://github.com/swc-project/swc.git"
9+
version = "0.149.3"
1010

11-
[package.metadata.docs.rs]
12-
all-features = true
13-
rustdoc-args = ["--cfg", "docsrs"]
11+
[package.metadata.docs.rs]
12+
all-features = true
13+
rustdoc-args = ["--cfg", "docsrs"]
1414

1515
[lib]
1616
bench = false
1717

1818
[features]
19-
compat = ["swc_css_compat"]
19+
compat = ["swc_css_compat"]
2020
minifier = ["swc_css_minifier"]
21-
modules = ["swc_css_modules"]
21+
modules = ["swc_css_modules"]
2222
prefixer = ["swc_css_prefixer"]
2323

2424
[dependencies]
25-
swc_css_ast = {version = "0.134.2", path = "../swc_css_ast"}
26-
swc_css_codegen = {version = "0.144.2", path = "../swc_css_codegen"}
27-
swc_css_compat = {version = "0.20.2", path = "../swc_css_compat", optional = true}
28-
swc_css_minifier = {version = "0.109.2", path = "../swc_css_minifier", optional = true}
29-
swc_css_modules = {version = "0.21.3", path = "../swc_css_modules", optional = true}
30-
swc_css_parser = {version = "0.143.2", path = "../swc_css_parser"}
31-
swc_css_prefixer = {version = "0.146.2", path = "../swc_css_prefixer", optional = true}
32-
swc_css_utils = {version = "0.131.2", path = "../swc_css_utils/"}
33-
swc_css_visit = {version = "0.133.2", path = "../swc_css_visit"}
25+
swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" }
26+
swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" }
27+
swc_css_compat = { version = "0.20.2", path = "../swc_css_compat", optional = true }
28+
swc_css_minifier = { version = "0.109.2", path = "../swc_css_minifier", optional = true }
29+
swc_css_modules = { version = "0.21.3", path = "../swc_css_modules", optional = true }
30+
swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" }
31+
swc_css_prefixer = { version = "0.146.2", path = "../swc_css_prefixer", optional = true }
32+
swc_css_utils = { version = "0.131.2", path = "../swc_css_utils/" }
33+
swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" }

‎crates/swc_css_codegen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ swc_css_utils = { version = "0.131.2", path = "../swc_css_utils" }
2727
swc_common = { version = "0.29.29", path = "../swc_common", features = [
2828
"sourcemap",
2929
] }
30-
swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" }
30+
swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" }
3131
swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" }
3232
testing = { version = "0.31.31", path = "../testing" }

‎crates/swc_css_compat/Cargo.toml

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
[package]
2-
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
3-
description = "Port of stylis"
2+
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
3+
description = "Port of stylis"
44
documentation = "https://rustdoc.swc.rs/swc_css_compat/"
5-
edition = "2021"
6-
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
7-
license = "Apache-2.0"
8-
name = "swc_css_compat"
9-
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.20.2"
5+
edition = "2021"
6+
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
7+
license = "Apache-2.0"
8+
name = "swc_css_compat"
9+
repository = "https://github.com/swc-project/swc.git"
10+
version = "0.20.2"
1111

1212
[lib]
1313
bench = false
1414

1515
[dependencies]
16-
bitflags = "1.3.2"
17-
once_cell = "1.10.0"
18-
serde = {version = "1.0.118", features = ["derive"]}
19-
serde_json = "1.0.61"
20-
swc_atoms = {version = "0.4.32", path = "../swc_atoms"}
21-
swc_common = {version = "0.29.29", path = "../swc_common"}
22-
swc_css_ast = {version = "0.134.2", path = "../swc_css_ast"}
23-
swc_css_utils = {version = "0.131.2", path = "../swc_css_utils/"}
24-
swc_css_visit = {version = "0.133.2", path = "../swc_css_visit"}
16+
bitflags = "1.3.2"
17+
once_cell = "1.10.0"
18+
serde = { version = "1.0.118", features = ["derive"] }
19+
serde_json = "1.0.61"
20+
swc_atoms = { version = "0.4.32", path = "../swc_atoms" }
21+
swc_common = { version = "0.29.29", path = "../swc_common" }
22+
swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" }
23+
swc_css_utils = { version = "0.131.2", path = "../swc_css_utils/" }
24+
swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" }
2525

2626
[dev-dependencies]
27-
swc_css_codegen = {version = "0.144.2", path = "../swc_css_codegen"}
28-
swc_css_parser = {version = "0.143.2", path = "../swc_css_parser"}
29-
testing = {version = "0.31.31", path = "../testing"}
27+
swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" }
28+
swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" }
29+
testing = { version = "0.31.31", path = "../testing" }

‎crates/swc_css_lints/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ thiserror = "1.0.30"
2626

2727
[dev-dependencies]
2828
serde_json = "1.0.79"
29-
swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" }
29+
swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" }
3030
testing = { version = "0.31.31", path = "../testing" }

‎crates/swc_css_minifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" }
2323
[dev-dependencies]
2424
criterion = "0.3"
2525
swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" }
26-
swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" }
26+
swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" }
2727
swc_node_base = { version = "0.5.8", path = "../swc_node_base" }
2828
testing = { version = "0.31.31", path = "../testing" }
2929

‎crates/swc_css_modules/Cargo.toml

+19-19
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
[package]
2-
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
3-
description = "CSS modules"
2+
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
3+
description = "CSS modules"
44
documentation = "https://rustdoc.swc.rs/swc_css_modules/"
5-
edition = "2021"
6-
include = ["Cargo.toml", "src/**/*.rs"]
7-
license = "Apache-2.0"
8-
name = "swc_css_modules"
9-
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.21.3"
5+
edition = "2021"
6+
include = ["Cargo.toml", "src/**/*.rs"]
7+
license = "Apache-2.0"
8+
name = "swc_css_modules"
9+
repository = "https://github.com/swc-project/swc.git"
10+
version = "0.21.3"
1111

1212
[lib]
1313
bench = false
1414

1515
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1616

1717
[dependencies]
18-
rustc-hash = "1.1.0"
19-
serde = {version = "1", features = ["derive"]}
20-
swc_atoms = {version = "0.4.32", path = "../swc_atoms"}
21-
swc_common = {version = "0.29.29", path = "../swc_common"}
22-
swc_css_ast = {version = "0.134.2", path = "../swc_css_ast"}
23-
swc_css_codegen = {version = "0.144.2", path = "../swc_css_codegen"}
24-
swc_css_parser = {version = "0.143.2", path = "../swc_css_parser"}
25-
swc_css_visit = {version = "0.133.2", path = "../swc_css_visit"}
18+
rustc-hash = "1.1.0"
19+
serde = { version = "1", features = ["derive"] }
20+
swc_atoms = { version = "0.4.32", path = "../swc_atoms" }
21+
swc_common = { version = "0.29.29", path = "../swc_common" }
22+
swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" }
23+
swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" }
24+
swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" }
25+
swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" }
2626

2727
[dev-dependencies]
28-
serde_json = "1"
29-
swc_css_compat = {version = "0.20.2", path = "../swc_css_compat"}
30-
testing = {version = "0.31.31", path = "../testing"}
28+
serde_json = "1"
29+
swc_css_compat = { version = "0.20.2", path = "../swc_css_compat" }
30+
testing = { version = "0.31.31", path = "../testing" }

‎crates/swc_css_parser/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include = ["Cargo.toml", "src/**/*.rs"]
77
license = "Apache-2.0"
88
name = "swc_css_parser"
99
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.143.2"
10+
version = "0.143.3"
1111

1212
[lib]
1313
bench = false
@@ -19,7 +19,7 @@ debug = []
1919
bitflags = "1.2.1"
2020
lexical = "6.1.0"
2121
serde = "1.0.127"
22-
swc_atoms = { version = "0.4.32", path = "../swc_atoms" }
22+
swc_atoms = { version = "0.4.34", path = "../swc_atoms" }
2323
swc_common = { version = "0.29.29", path = "../swc_common" }
2424
swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" }
2525

‎crates/swc_css_prefixer/Cargo.toml

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
[package]
2-
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
3-
description = "Port of stylis"
2+
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
3+
description = "Port of stylis"
44
documentation = "https://rustdoc.swc.rs/swc_stylis/"
5-
edition = "2021"
6-
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
7-
license = "Apache-2.0"
8-
name = "swc_css_prefixer"
9-
repository = "https://github.com/swc-project/swc.git"
10-
version = "0.146.2"
5+
edition = "2021"
6+
include = ["Cargo.toml", "src/**/*.rs", "src/**/*.json", "data/**/*.json"]
7+
license = "Apache-2.0"
8+
name = "swc_css_prefixer"
9+
repository = "https://github.com/swc-project/swc.git"
10+
version = "0.146.2"
1111

1212
[lib]
1313
bench = false
1414

1515
[dependencies]
16-
once_cell = "1.10.0"
17-
preset_env_base = {version = "0.4.0", path = "../preset_env_base"}
18-
serde = {version = "1.0.118", features = ["derive"]}
19-
serde_json = "1.0.61"
20-
swc_atoms = {version = "0.4.32", path = "../swc_atoms"}
21-
swc_common = {version = "0.29.29", path = "../swc_common"}
22-
swc_css_ast = {version = "0.134.2", path = "../swc_css_ast"}
23-
swc_css_utils = {version = "0.131.2", path = "../swc_css_utils/"}
24-
swc_css_visit = {version = "0.133.2", path = "../swc_css_visit"}
16+
once_cell = "1.10.0"
17+
preset_env_base = { version = "0.4.0", path = "../preset_env_base" }
18+
serde = { version = "1.0.118", features = ["derive"] }
19+
serde_json = "1.0.61"
20+
swc_atoms = { version = "0.4.32", path = "../swc_atoms" }
21+
swc_common = { version = "0.29.29", path = "../swc_common" }
22+
swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" }
23+
swc_css_utils = { version = "0.131.2", path = "../swc_css_utils/" }
24+
swc_css_visit = { version = "0.133.2", path = "../swc_css_visit" }
2525

2626
[dev-dependencies]
27-
swc_css_codegen = {version = "0.144.2", path = "../swc_css_codegen"}
28-
swc_css_parser = {version = "0.143.2", path = "../swc_css_parser"}
29-
testing = {version = "0.31.31", path = "../testing"}
27+
swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" }
28+
swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" }
29+
testing = { version = "0.31.31", path = "../testing" }

‎crates/swc_html_minifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ swc_common = { version = "0.29.29", path = "../swc_common" }
2525
swc_css_ast = { version = "0.134.2", path = "../swc_css_ast" }
2626
swc_css_codegen = { version = "0.144.2", path = "../swc_css_codegen" }
2727
swc_css_minifier = { version = "0.109.2", path = "../swc_css_minifier" }
28-
swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" }
28+
swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" }
2929
swc_ecma_ast = { version = "0.96.3", path = "../swc_ecma_ast" }
3030
swc_ecma_codegen = { version = "0.129.10", path = "../swc_ecma_codegen" }
3131
swc_ecma_minifier = { version = "0.166.18", path = "../swc_ecma_minifier" }

‎crates/swc_plugin_runner/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ swc_atoms = { version = "0.4.32", path = '../swc_atoms' }
6363
swc_css_ast = { version = "0.134.2", path = "../swc_css_ast", features = [
6464
"rkyv-impl",
6565
] }
66-
swc_css_parser = { version = "0.143.2", path = "../swc_css_parser" }
66+
swc_css_parser = { version = "0.143.3", path = "../swc_css_parser" }
6767
swc_ecma_ast = { version = "0.96.3", path = "../swc_ecma_ast", features = [
6868
"rkyv-impl",
6969
] }

0 commit comments

Comments
 (0)
Please sign in to comment.