-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (23 loc) · 858 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
authors = ["magic-akari <akari.ccino@gmail.com>"]
description = "SWC AST Viewer"
edition = "2021"
homepage = "https://github.com/magic-akari/swc-ast-viewer"
keywords = []
license = "MIT"
readme = "README.md"
repository = "https://github.com/magic-akari/swc-ast-viewer"
version = "0.0.0"
[workspace.dependencies]
swc_core = { version = "0.109.0", default-features = false }
swc_error_reporters = "1.0.0"
[profile.release]
codegen-units = 1
debug = false # set to `true` for debug information
lto = true
opt-level = "s"
panic = "abort" # Let it crash and force ourselves to write safe Rust.
strip = "symbols" # set to `false` for debug information