Skip to content

Commit a2f7f3a

Browse files
chore(deps): Update SWC and clap dependencies
This commit updates the project dependencies to their latest versions. The command-line argument parser clap is upgraded to version 4.5.55 for minor enhancements. Additionally, several SWC dependencies are updated: swc_ecma_ast to 20.0.1, swc_ecma_codegen to 23.0.0, swc_ecma_parser to 33.0.1, swc_ecma_transforms_proposal to 36.0.1, and swc_ecma_transforms_typescript to 40.0.0. SWC is used for JavaScript and TypeScript processing in the code editor, and these updates may include bug fixes, performance improvements, and new features to enhance the development experience.
1 parent d483eb7 commit a2f7f3a

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ toml = { version = "0.9.11" }
99
[dependencies]
1010
anyhow = { version = "1.0.100" }
1111
chrono = { version = "0.4.43" }
12-
clap = { features = ["derive"], version = "4.5.54" }
12+
clap = { features = ["derive"], version = "4.5.55" }
1313
dashmap = { version = "6.1.0" }
1414
futures = { version = "0.3.31" }
1515
git2 = { version = "0.20.3" }
@@ -23,12 +23,12 @@ regex = { version = "1.12.2" }
2323
serde = { version = "1.0.228" }
2424
serde_json = { version = "1.0.149" }
2525
swc_common = { version = "18.0.1" }
26-
swc_ecma_ast = { version = "20.0.0" }
27-
swc_ecma_codegen = { version = "22.0.0" }
28-
swc_ecma_parser = { version = "33.0.0" }
26+
swc_ecma_ast = { version = "20.0.1" }
27+
swc_ecma_codegen = { version = "23.0.0" }
28+
swc_ecma_parser = { version = "33.0.1" }
2929
swc_ecma_transforms_base = { version = "36.0.1", features = ["concurrent"] }
30-
swc_ecma_transforms_proposal = { version = "36.0.0" }
31-
swc_ecma_transforms_typescript = { version = "39.0.1" }
30+
swc_ecma_transforms_proposal = { version = "36.0.1" }
31+
swc_ecma_transforms_typescript = { version = "40.0.0" }
3232
swc_ecma_visit = { version = "20.0.0" }
3333
tokio = { version = "1.49.0", features = ["full"] }
3434
tracing = { version = "0.1.44" }

0 commit comments

Comments
 (0)