File: Cargo.toml

package info (click to toggle)
rust-swc-core 35.0.0~ds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 62,816 kB
  • sloc: javascript: 873; xml: 538; sh: 358; makefile: 35; python: 5
file content (36 lines) | stat: -rw-r--r-- 1,443 bytes parent folder | download
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
30
31
32
33
34
35
36
[package]
authors       = ["강동윤 <kdy1997.dev@gmail.com>"]
description   = "Super-fast TypeScript stripper based on SWC"
documentation = "https://rustdoc.swc.rs/swc_fast_type_strip/"
edition       = { workspace = true }
include       = ["Cargo.toml", "src/**/*.rs"]
license       = { workspace = true }
name          = "swc_ts_fast_strip"
repository    = { workspace = true }
version       = "29.0.0"


[features]
default = []

[dependencies]
anyhow       = { workspace = true }
bytes-str    = { workspace = true }
serde        = { workspace = true, features = ["derive"] }
swc_atoms = { version = "7.0.0", path = "../swc_atoms" }
swc_common = { version = "14.0.2", path = "../swc_common", features = [
  "sourcemap",
] }
swc_ecma_ast = { version = "14.0.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "16.0.0", path = "../swc_ecma_codegen" }
swc_ecma_parser = { version = "22.0.3", path = "../swc_ecma_parser", default-features = false, features = [
  "typescript",
  "unstable",
] }
swc_ecma_transforms_base = { version = "24.0.0", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_react = { version = "26.0.0", path = "../swc_ecma_transforms_react" }
swc_ecma_transforms_typescript = { version = "26.0.0", path = "../swc_ecma_transforms_typescript" }
swc_ecma_visit = { version = "14.0.0", path = "../swc_ecma_visit" }

[dev-dependencies]
testing                   = { version = "15.0.0", path = "../testing" }