diff --git a/Cargo.lock b/Cargo.lock index 91e9b8b4247b2..19654409b422e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4080,8 +4080,9 @@ dependencies = [ [[package]] name = "mdxjs" -version = "0.3.0" -source = "git+https://github.com/kdy1/mdxjs-rs.git?branch=swc-core-13#f5f4feadf77529bc47fe7ca91b5999aaf6c06921" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ff80857915f8617faedd7b1da6e89b3670ffd26cbfe9ac53b16b333ac86f320" dependencies = [ "markdown", "rustc-hash 2.1.0", @@ -6766,8 +6767,9 @@ dependencies = [ [[package]] name = "sourcemap" -version = "9.0.0" -source = "git+https://github.com/wbinnssmith/rust-sourcemap?branch=wbinnssmith%2Fignore-list#5ddd8f176e537ced3b024363d3bd04444d442cd7" +version = "9.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27c4ea7042fd1a155ad95335b5d505ab00d5124ea0332a06c8390d200bb1a76a" dependencies = [ "base64-simd", "bitvec", @@ -9681,7 +9683,6 @@ dependencies = [ "sourcemap", "strsim 0.11.1", "swc_core", - "swc_ecma_visit", "tokio", "tracing", "turbo-rcstr", diff --git a/Cargo.toml b/Cargo.toml index e1e1306b4780f..932242fbfc1b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -220,12 +220,8 @@ urlencoding = "2.1.2" webbrowser = "0.8.7" [patch.crates-io] -sourcemap = { git = "https://github.com/wbinnssmith/rust-sourcemap", branch = "wbinnssmith/ignore-list" } # Remove this once https://github.com/wasmerio/wasmer/pull/5333 is merged and released wasmer = { git = "https://github.com/kdy1/wasmer", branch = "build-deps" } wasmer-cache = { git = "https://github.com/kdy1/wasmer", branch = "build-deps" } wasmer-compiler-cranelift = { git = "https://github.com/kdy1/wasmer", branch = "build-deps" } wasmer-wasix = { git = "https://github.com/kdy1/wasmer", branch = "build-deps" } - -# Remove this once https://github.com/wooorm/mdxjs-rs/pull/62 is merged and released -mdxjs = { git="https://github.com/kdy1/mdxjs-rs.git", branch="swc-core-13" } diff --git a/turbopack/crates/turbopack-ecmascript/Cargo.toml b/turbopack/crates/turbopack-ecmascript/Cargo.toml index b43af8d241990..834a21e357b80 100644 --- a/turbopack/crates/turbopack-ecmascript/Cargo.toml +++ b/turbopack/crates/turbopack-ecmascript/Cargo.toml @@ -63,11 +63,11 @@ swc_core = { workspace = true, features = [ "ecma_quote", "ecma_visit", "ecma_visit_path", + "ecma_visit_serde", "ecma_utils", "testing", "base", ] } -swc_ecma_visit = { version = "6.0.0", features = ["serde-impl"] } [dev-dependencies] criterion = { workspace = true, features = ["async_tokio"] }