Skip to content

Commit

Permalink
chore(deps): Update dependencies (#8810)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 authored Apr 4, 2024
1 parent 9e28254 commit 207582f
Show file tree
Hide file tree
Showing 69 changed files with 289 additions and 273 deletions.
172 changes: 94 additions & 78 deletions Cargo.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions crates/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ swc_ecma_transforms = { optional = true, version = "0.229.17", path = "../swc_ec
swc_ecma_visit = { optional = true, version = "0.98.7", path = "../swc_ecma_visit" }

# Optional deps for the wasm binding macro
anyhow = { optional = true, version = "1.0.71" }
anyhow = { optional = true, version = "1.0.81" }
console_error_panic_hook = { optional = true, version = "0.1.7" }
js-sys = { optional = true, version = "0.3.59" }
once_cell = { optional = true, version = "1.18.0" }
once_cell = { optional = true, version = "1.19.0" }
serde = { optional = true, version = "1", features = ["derive"] }
serde-wasm-bindgen = { optional = true, version = "0.4.5" }
wasm-bindgen = { optional = true, version = "0.2.91", features = [
Expand Down
6 changes: 3 additions & 3 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bench = false
name = "dbg-swc"

[dependencies]
anyhow = "1.0.71"
anyhow = "1.0.81"
clap = { version = "3", features = ["derive"] }
dialoguer = "0.10.2"
flate2 = "1.0"
Expand All @@ -21,8 +21,8 @@ serde = "1"
serde_json = "1"
sha1 = "0.10.5"
tempfile = "3.6.0"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["fmt", "env-filter"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["fmt", "env-filter"] }
url = "2"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
Expand Down
2 changes: 1 addition & 1 deletion crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ swc_common = { version = "0.33.20", path = "../swc_common" }

[dev-dependencies]
anyhow = "1"
dashmap = "5.4.0"
dashmap = "5.5.3"

swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" }
Expand Down
6 changes: 3 additions & 3 deletions crates/preset_env_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ bench = false
ahash = "0.8.8"
anyhow = "1"
browserslist-rs = "0.15.0"
dashmap = "5.4.0"
once_cell = "1.18.0"
dashmap = "5.5.3"
once_cell = "1.19.0"
semver = { version = "1.0.17", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
st-map = "0.2.0"
tracing = { version = "0.1.37" }
tracing = { version = "0.1.40" }

from_variant = { version = "0.1.7", path = "../from_variant" }
6 changes: 3 additions & 3 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,20 +51,20 @@ plugin_transform_host_native = [
[dependencies]
anyhow = "1"
base64 = "0.21.0"
dashmap = "5.4.0"
dashmap = "5.5.3"
either = "1"
indexmap = { version = "2.0.0", features = ["serde"] }
jsonc-parser = { version = "0.21.0", features = ["serde"] }
lru = "0.10.0"
once_cell = "1.18.0"
once_cell = "1.19.0"
parking_lot = "0.12.1"
pathdiff = "0.2.0"
regex = "1"
rustc-hash = "1.1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
sourcemap = "8.0"
tracing = "0.1.37"
tracing = "0.1.40"
url = "2.4.0"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
Expand Down
8 changes: 4 additions & 4 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ default = []
[dependencies]
anyhow = "1"
crc = "2.1.0"
dashmap = { version = "5.4.0", optional = true }
dashmap = { version = "5.5.3", optional = true }
indexmap = "2.0.0"
is-macro = "0.3.0"
once_cell = "1.18.0"
is-macro = "0.3.5"
once_cell = "1.19.0"
parking_lot = "0.12.1"
petgraph = "0.6"
radix_fmt = "1"
rayon = { version = "1", optional = true }
relative-path = "1.2"
tracing = "0.1.37"
tracing = "0.1.40"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
Expand Down
8 changes: 4 additions & 4 deletions crates/swc_cached/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ bench = false

[dependencies]
ahash = "0.8.8"
anyhow = "1.0.71"
dashmap = "5.4.0"
once_cell = "1.18.0"
anyhow = "1.0.81"
dashmap = "5.5.3"
once_cell = "1.19.0"
regex = "1.5.4"
serde = "1.0.136"
serde = "1.0.197"
6 changes: 3 additions & 3 deletions crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugin = [
]

[dependencies]
anyhow = "1.0.66"
anyhow = "1.0.81"
atty = "0.2.14"
clap = { version = "3.2.25", features = ["derive", "wrap_help"] }
glob = "0.3.0"
Expand All @@ -34,10 +34,10 @@ relative-path = "1.6.1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["unbounded_depth"] }
sourcemap = "8.0.0"
tracing = "0.1.37"
tracing = "0.1.40"
tracing-chrome = "0.5.0"
tracing-futures = "0.2.5"
tracing-subscriber = { version = "0.3.9", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
walkdir = "2"

swc_core = { version = "0.90.23", features = [
Expand Down
10 changes: 5 additions & 5 deletions crates/swc_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,27 +38,27 @@ rkyv-impl = ["__rkyv", "rkyv", "swc_atoms/rkyv-impl", "bytecheck"]

[dependencies]
ahash = { version = "0.8.8", optional = true }
anyhow = { version = "1.0.71", optional = true }
anyhow = { version = "1.0.81", optional = true }
arbitrary = { version = "1", optional = true, features = ["derive"] }
atty = { version = "0.2", optional = true }
# bytecheck version should be in sync with rkyv version. Do not bump individually.
bytecheck = { version = "0.6.10", optional = true }
cfg-if = "1.0.0"
either = "1.5"
either = "1.10"
new_debug_unreachable = "1.0.4"
num-bigint = "0.4"
once_cell = "1.18.0"
once_cell = "1.19.0"
parking_lot = { version = "0.12.1", optional = true }
rkyv = { version = "=0.7.42", optional = true, features = [
"strict",
"validation",
] }
rustc-hash = "1.1.0"
serde = { version = "1.0.119", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
siphasher = "0.3.9"
sourcemap = { version = "8", optional = true }
termcolor = { version = "1.0", optional = true }
tracing = "0.1.37"
tracing = "0.1.40"
unicode-width = "0.1.4"
url = "2.4.0"

Expand Down
4 changes: 2 additions & 2 deletions crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ version = "0.7.19"
node = ["napi", "napi-derive"]

[dependencies]
anyhow = "1.0.75"
anyhow = "1.0.81"
base64 = "0.21.0"
once_cell = "1"
pathdiff = "0.2.0"
serde = { version = "1.0.188", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
sourcemap = "8.0"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ __visit = ["__ecma", "swc_ecma_visit"]

[dependencies]
# 3rd party dependencies
once_cell = { optional = true, version = "1.18.0" }
once_cell = { optional = true, version = "1.19.0" }

# swc_* dependencies
binding_macros = { optional = true, version = "0.64.22", path = "../binding_macros" }
Expand Down Expand Up @@ -376,4 +376,4 @@ swc_plugin_runner = { optional = true, version = "0.106.13", path = "../swc_plug
vergen = { version = "8.0.0", default-features = false, features = ["cargo"] }

[dev-dependencies]
anyhow = "1.0.71"
anyhow = "1.0.81"
4 changes: 2 additions & 2 deletions crates/swc_css_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ rkyv-impl = ["__rkyv", "rkyv", "swc_atoms/rkyv-impl", "swc_common/rkyv-impl"]
serde-impl = ["serde"]

[dependencies]
is-macro = "0.3.0"
is-macro = "0.3.5"
rkyv = { version = "=0.7.42", optional = true, features = [
"strict",
"validation",
] }
serde = { version = "1.0.127", features = ["derive"], optional = true }
serde = { version = "1.0.197", features = ["derive"], optional = true }

string_enum = { version = "0.4.2", path = "../string_enum/" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_css_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ version = "0.151.31"
bench = false

[dependencies]
auto_impl = "1.1.0"
bitflags = "2.3.2"
auto_impl = "1.2.0"
bitflags = "2.5.0"
rustc-hash = "1.1.0"
serde = "1.0.127"
serde = "1.0.197"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
Expand Down
8 changes: 4 additions & 4 deletions crates/swc_css_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ version = "0.27.32"
bench = false

[dependencies]
bitflags = "2.3.2"
once_cell = "1.18.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
bitflags = "2.5.0"
once_cell = "1.19.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_css_lints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ version = "0.60.31"
bench = false

[dependencies]
auto_impl = "1.1.0"
auto_impl = "1.2.0"
parking_lot = "0.12.1"
rayon = "1.7.0"
serde = { version = "1.0.133", features = ["derive"] }
serde = { version = "1.0.197", features = ["derive"] }
thiserror = "1.0.30"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
Expand All @@ -26,7 +26,7 @@ swc_css_ast = { version = "0.140.21", path = "../swc_css_ast" }
swc_css_visit = { version = "0.139.21", path = "../swc_css_visit" }

[dev-dependencies]
serde_json = "1.0.79"
serde_json = "1.0.115"

swc_css_parser = { version = "0.150.30", path = "../swc_css_parser" }
testing = { version = "0.35.21", path = "../testing" }
2 changes: 1 addition & 1 deletion crates/swc_css_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "0.116.32"
bench = false

[dependencies]
serde = "1.0.118"
serde = "1.0.197"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
Expand Down
4 changes: 2 additions & 2 deletions crates/swc_css_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ debug = []

[dependencies]
lexical = "6.1.0"
serde = "1.0.127"
serde = "1.0.197"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
swc_css_ast = { version = "0.140.21", path = "../swc_css_ast" }

[dev-dependencies]
criterion = "0.5"
serde_json = "1.0.66"
serde_json = "1.0.115"

swc_css_ast = { version = "0.140.21", path = "../swc_css_ast", features = [
"serde-impl",
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_css_prefixer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ version = "0.153.35"
bench = false

[dependencies]
once_cell = "1.18.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
once_cell = "1.19.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"

preset_env_base = { version = "0.4.11", path = "../preset_env_base" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_css_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ version = "0.137.21"
bench = false

[dependencies]
once_cell = "1.18.0"
serde = { version = "1.0.118", features = ["derive"] }
serde_json = "1.0.61"
once_cell = "1.19.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_ecma_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ serde-impl = ["serde"]

[dependencies]
arbitrary = { version = "1", optional = true, features = ["derive"] }
bitflags = "2.3.2"
bitflags = "2.5.0"
# bytecheck version should be in sync with rkyv version. Do not bump individually.
bytecheck = { version = "0.6.10", optional = true }
is-macro = "0.3.0"
is-macro = "0.3.5"
num-bigint = { version = "0.4", features = ["serde"] }
phf = { version = "0.11.2", features = ["macros"] }
rkyv = { package = "rkyv", version = "=0.7.42", optional = true, features = [
"strict",
"validation",
] }
scoped-tls = "1.0.1"
serde = { version = "1.0.133", features = ["derive"], optional = true }
serde = { version = "1.0.197", features = ["derive"], optional = true }
string_enum = { version = "0.4.2", path = "../string_enum" }
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
Expand Down
6 changes: 3 additions & 3 deletions crates/swc_ecma_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ bench = false
[dependencies]
memchr = "2.6.1"
num-bigint = { version = "0.4", features = ["serde"] }
once_cell = "1.18.0"
once_cell = "1.19.0"
rustc-hash = "1.1.0"
serde = "1.0.127"
serde = "1.0.197"
sourcemap = "8.0"
tracing = "0.1.37"
tracing = "0.1.40"

swc_atoms = { version = "0.6.5", path = "../swc_atoms" }
swc_common = { version = "0.33.20", path = "../swc_common" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_ecma_compat_bugfixes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transform
swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"
tracing = "0.1.40"

[dev-dependencies]
swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" }
Expand Down
14 changes: 7 additions & 7 deletions crates/swc_ecma_compat_es2015/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@ version = "0.4.17"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
arrayvec = "0.7.4"
arrayvec = "0.7.4"
indexmap = "2.0.0"
is-macro = "0.3.0"
serde = "1.0.188"
serde_derive = "1.0.188"
is-macro = "0.3.5"
serde = "1.0.197"
serde_derive = "1.0.197"
smallvec = "1.8.0"
swc_atoms = { version = "0.6.5", path = "../swc_atoms" }


swc_common = { version = "0.33.20", path = "../swc_common" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_config = { version = "0.1.11", path = "../swc_config" }
swc_ecma_ast = { version = "0.112.6", path = "../swc_ecma_ast" }
swc_ecma_compat_common = { version = "0.4.13", path = "../swc_ecma_compat_common" }
swc_ecma_compat_common = { version = "0.4.13", path = "../swc_ecma_compat_common" }
swc_ecma_transforms_base = { version = "0.137.16", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_classes = { version = "0.126.16", path = "../swc_ecma_transforms_classes" }
swc_ecma_transforms_macros = { version = "0.5.4", path = "../swc_ecma_transforms_macros" }
swc_ecma_utils = { version = "0.127.13", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "0.98.7", path = "../swc_ecma_visit" }
swc_trace_macro = { version = "0.1.3", path = "../swc_trace_macro" }
tracing = "0.1.37"
tracing = "0.1.40"

[dev-dependencies]
swc_ecma_parser = { version = "0.143.10", path = "../swc_ecma_parser" }
Expand Down
Loading

0 comments on commit 207582f

Please sign in to comment.