mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
Co-authored-by: Zack Radisic <56137411+zackradisic@users.noreply.github.com> Co-authored-by: zackradisic <zackradisic@users.noreply.github.com>
22 lines
472 B
TOML
22 lines
472 B
TOML
[package]
|
|
edition = "2021"
|
|
name = "bun-mdx-rs"
|
|
version = "0.0.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
# Default enable napi4 feature, see https://nodejs.org/api/n-api.html#node-api-version-matrix
|
|
napi = { version = "2.12.2", default-features = false, features = ["napi4"] }
|
|
napi-derive = "2.12.2"
|
|
mdxjs = "0.2.11"
|
|
bun-native-plugin = { path = "../bun-native-plugin-rs" }
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.0.1"
|
|
|
|
[profile.release]
|
|
lto = true
|
|
strip = "symbols"
|