Skip to content

Commit 9c1eb01

Browse files
authoredMar 13, 2024··
chore(es): Allow using older tokio (#8740)
**Description:** I made a mistake while working on #8711
1 parent 8044937 commit 9c1eb01

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed
 

‎crates/swc/Cargo.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,7 @@ swc_plugin_proxy = { version = "0.41.5", path = "../swc_plugin_proxy", optional
107107
swc_plugin_runner = { version = "0.106.11", path = "../swc_plugin_runner", optional = true, default-features = false }
108108
swc_timer = { version = "0.21.20", path = "../swc_timer" }
109109
swc_visit = { version = "0.5.10", path = "../swc_visit" }
110-
tokio = { version = "1.36.0", optional = true, features = [
111-
"rt",
112-
"rt-multi-thread",
113-
] }
110+
tokio = { version = "1", optional = true, features = ["rt", "rt-multi-thread"] }
114111

115112

116113
[dependencies.napi-derive]

0 commit comments

Comments
 (0)
Please sign in to comment.