rsnext/packages/next-swc/crates/next-transform-dynamic/Cargo.toml
Justin Ridgewell 82ac6f45f8 Update mdxjs and testing crates (vercel/turbo#3398)
This updates our `mdxjs` dependency to the tip of
https://github.com/wooorm/mdxjs-rs/pull/11, so that we can update it's
`swc_core` dependency (it conflicts with ours).

It also updates the `testing` crate to update it's `swc_common`
dependency (also conflicting with ours), and makes it a workspace
dependency.
2023-01-20 13:47:41 -05:00

29 lines
518 B
TOML

[package]
name = "next-transform-dynamic"
version = "0.1.0"
description = "SWC transform for next/dynamic"
license = "MPL-2.0"
edition = "2021"
autobenches = false
[lib]
bench = false
[dependencies]
pathdiff = "0.2.0"
swc_core = { workspace = true, features = [
"ecma_ast",
"common",
"ecma_codegen",
"ecma_parser",
"ecma_quote",
"ecma_visit",
"ecma_utils",
"testing",
"base",
] }
[dev-dependencies]
swc_core = { workspace = true, features = ["testing_transform"] }
testing = { workspace = true }