forked from denoland/deno_ast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (76 loc) · 3.8 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "deno_ast"
version = "0.41.1"
authors = ["the Deno authors"]
documentation = "https://docs.rs/deno_ast"
edition = "2021"
homepage = "https://deno.land/"
license = "MIT"
repository = "https://github.com/denoland/deno_ast"
description = "Source text parsing, lexing, and AST related functionality for Deno"
[package.metadata.docs.rs]
all-features = true
[features]
bundler = ["swc_bundler", "swc_ecma_transforms_optimization", "swc_graph_analyzer"]
cjs = ["utils", "visit"]
codegen = ["swc_ecma_codegen", "swc_ecma_codegen_macros", "swc_macros_common"]
compat = ["transforms", "swc_ecma_transforms_compat", "swc_trace_macro", "swc_config", "swc_config_macro"]
dep_analysis = ["visit"]
proposal = ["transforms", "swc_ecma_transforms_proposal", "swc_ecma_transforms_classes", "swc_ecma_transforms_macros", "swc_macros_common"]
react = ["transforms", "swc_ecma_transforms_react", "swc_ecma_transforms_macros", "swc_config", "swc_config_macro", "swc_macros_common"]
scopes = ["view", "utils", "visit"]
sourcemap = ["dprint-swc-ext/sourcemap"]
transforms = ["swc_ecma_loader", "swc_ecma_transforms_base"]
emit = ["anyhow", "base64", "codegen", "sourcemap"]
transpiling = ["emit", "proposal", "react", "transforms", "typescript", "utils", "visit"]
typescript = ["transforms", "swc_ecma_transforms_typescript"]
utils = ["swc_ecma_utils"]
view = ["dprint-swc-ext/view"]
visit = ["swc_ecma_visit", "swc_visit", "swc_visit_macros", "swc_macros_common"]
[dependencies]
anyhow = { version = "1.0.64", optional = true }
base64 = { version = "0.21.6", optional = true }
deno_media_type = "0.1.4"
deno_terminal = "0.1.1"
dprint-swc-ext = "0.18.0"
once_cell = "1.19.0"
percent-encoding = "2.3.1"
serde = { version = "1.0.144", features = ["derive"] }
text_lines = { version = "0.6.0", features = ["serialization"] }
url = { version = "2.3.1", features = ["serde"] }
unicode-width = "0.1.13" # 0.1.13 because control characters have a width of 1 there
# swc's version bumping is very buggy and there will often be patch versions
# published that break our build, so we pin all swc versions to prevent
# pulling in new versions of swc crates
#
# NOTE: You can automatically update these dependencies by running ./scripts/update_swc_deps.ts
swc_atoms = "=0.6.7"
swc_common = "=0.36.2"
swc_config = { version = "=0.1.14", optional = true }
swc_config_macro = { version = "=0.1.4", optional = true }
swc_ecma_ast = { version = "=0.117.4", features = ["serde-impl"] }
swc_ecma_codegen = { version = "=0.154.3", optional = true }
swc_ecma_codegen_macros = { version = "=0.7.7", optional = true }
swc_ecma_loader = { version = "=0.48.1", optional = true }
swc_ecma_parser = "=0.148.1"
swc_ecma_transforms_base = { version = "=0.143.3", optional = true }
swc_ecma_transforms_classes = { version = "=0.132.1", optional = true }
swc_ecma_transforms_compat = { version = "=0.169.2", optional = true }
swc_ecma_transforms_macros = { version = "=0.5.5", optional = true }
swc_ecma_transforms_optimization = { version = "=0.204.2", optional = true }
swc_ecma_transforms_proposal = { version = "=0.177.1", optional = true }
swc_ecma_transforms_react = { version = "=0.189.2", optional = true }
swc_ecma_transforms_typescript = { version = "=0.194.2", optional = true }
swc_ecma_utils = { version = "=0.133.3", optional = true }
swc_ecma_visit = { version = "=0.103.3", optional = true }
swc_eq_ignore_macros = "=0.1.4"
swc_bundler = { version = "=0.233.3", optional = true }
swc_graph_analyzer = { version = "=0.25.1", optional = true }
swc_macros_common = { version = "=0.3.13", optional = true }
swc_trace_macro = { version = "=0.1.3", optional = true }
swc_visit = { version = "=0.6.1", optional = true }
swc_visit_macros = { version = "=0.5.13", optional = true }
thiserror = "1.0.58"
[dev-dependencies]
pretty_assertions = "1.3.0"
serde_json = { version = "1.0.87", features = ["preserve_order"] }