-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 552 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 552 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "swc_plugin_import_meta_env"
version = "1.15.30"
edition = "2021"
authors = ["Alex Miller <codex.nz@gmail.com>"]
description = "SWC plugin for handling the transformation of import.meta.env"
license = "Apache-2.0"
rust-version = "1.70"
[lib]
crate-type = ["cdylib"]
[dependencies]
swc_core = { version = "64.0.0", features = [
"ecma_plugin_transform",
"trace_macro",
] }
tracing = { version = "0.1.43", features = ["release_max_level_info"] }
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
strip = "symbols"