Skip to content

Commit e1bce06

Browse files
update swc to work with latest serde
1 parent 3ec91b8 commit e1bce06

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Cargo.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "quickjs_runtime"
3-
version = "0.15.3"
3+
version = "0.15.4"
44
authors = ["Andries Hiemstra <[email protected]>"]
55
edition = "2021"
66
description = "Wrapper API and utils for the QuickJS JavaScript engine with support for Promise, Modules, Async/await"
@@ -40,7 +40,8 @@ thread-id = "5"
4040
futures = "0.3"
4141
tokio = { version = "1", features = ["rt", "rt-multi-thread"] }
4242
serde_json = "1.0"
43-
serde = { version = "=1.0.219", features = ["derive"] }
43+
#serde = { version = "=1.0.219", features = ["derive"] }
44+
serde = { version = "1", features = ["derive"] }
4445
string_cache = "0.8"
4546
flume = { version = "0.11", features = ["async"] }
4647
either = "1"
@@ -53,14 +54,14 @@ anyhow = "1"
5354
# pulling in new versions of swc crates"
5455
# see https://github.com/denoland/deno_ast/blob/main/Cargo.toml
5556
swc = { version = "=35.0.0", optional = true }
56-
swc_config = { version = "=3.1.1", optional = true }
57+
swc_config = { version = "=3.1.2", optional = true }
5758
swc_config_macro = { version = "=1.0.1", optional = true }
5859
swc_ecma_ast = { version = "=15.0.0", features = ["serde-impl"] , optional=true}
5960
swc_atoms = { version = "=7.0.0", optional = true }
6061
swc_cached = { version = "=2.0.0", optional = true }
6162
swc_eq_ignore_macros = { version = "=1.0.1", optional = true }
6263
swc_visit_macros = { version = "=0.5.13", optional = true }
63-
swc_common = { version = "=14.0.3", optional = true, features = ["tty-emitter"] }
64+
swc_common = { version = "=14.0.4", optional = true, features = ["tty-emitter"] }
6465
swc_ecma_codegen = { version = "=17.0.0", optional = true }
6566
swc_ecma_codegen_macros = { version = "=2.0.2", optional = true }
6667
swc_ecma_loader = { version = "=14.0.0", optional = true }
@@ -82,7 +83,7 @@ swc_macros_common = { version = "=1.0.1", optional = true }
8283
swc_sourcemap = { version = "9.3.4", optional = true }
8384
swc_trace_macro = { version = "=2.0.2", optional = true }
8485
swc_visit = { version = "=2.0.1", optional = true }
85-
swc_node_comments = { version = "=8.0.0", optional = true }
86+
swc_node_comments = { version = "=14.0.0", optional = true }
8687

8788

8889
[dev-dependencies]

0 commit comments

Comments
 (0)