rsnext/packages/next-swc/crates/next-transform-strip-page-exports/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

38 lines
782 B
TOML

[package]
name = "next-transform-strip-page-exports"
version = "0.1.0"
description = "SWC transform to selectively strip Next.js page data or default exports"
license = "MPL-2.0"
edition = "2021"
autobenches = false
[lib]
bench = false
[dependencies]
fxhash = "0.2.1"
tracing = "0.1.37"
swc_core = { workspace = true, features = [
"ecma_ast",
"common",
"common_concurrent",
"common_sourcemap",
"ecma_codegen",
"ecma_parser",
"ecma_preset_env",
"ecma_transforms",
"ecma_transforms_module",
"ecma_transforms_react",
"ecma_transforms_typescript",
"ecma_quote",
"ecma_visit",
"ecma_visit_path",
"ecma_utils",
"testing",
"base",
] }
[dev-dependencies]
swc_core = { workspace = true, features = ["testing_transform"] }
testing = { workspace = true }