forked from denoland/deno_ast
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (81 loc) · 3.92 KB
/
Cargo.toml
File metadata and controls
88 lines (81 loc) · 3.92 KB
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
83
84
85
86
87
88
[package]
name = "deno_ast"
version = "0.52.0"
authors = ["the Deno authors"]
documentation = "https://docs.rs/deno_ast"
edition = "2024"
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"]
concurrent = ["swc_common/concurrent"]
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"]
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", "swc_sourcemap"]
transforms = ["swc_ecma_loader", "swc_ecma_transforms_base"]
emit = ["base64", "codegen", "sourcemap"]
type_strip = [ "swc_ts_fast_strip" ]
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_macros_common"]
[dependencies]
base64 = { version = "0.22.1", optional = true }
capacity_builder = "0.5.0"
deno_media_type = "0.3.3"
deno_terminal = "0.2.2"
deno_error = "0.7.0"
dprint-swc-ext = "0.26.0"
percent-encoding = "2.3.1"
serde = { version = "1.0.219", features = ["derive"] }
text_lines = { version = "0.6.0", features = ["serialization"] }
url = { version = "2.5.4", features = ["serde"] }
unicode-width = "0.2.0"
# 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 = "=9.0.0"
swc_common = "=17.0.1"
swc_config = { version = "=3.1.2", optional = true }
swc_config_macro = { version = "=1.0.1", optional = true }
swc_ecma_ast = { version = "=18.0.0", features = ["serde-impl"] }
swc_ecma_codegen = { version = "=20.0.2", optional = true }
swc_ecma_codegen_macros = { version = "=2.0.2", optional = true }
swc_ecma_loader = { version = "=17.0.0", optional = true }
swc_ecma_lexer = "=26.0.0"
swc_ecma_parser = "=27.0.7"
swc_ecma_transforms_base = { version = "=30.0.1", features = ["inline-helpers"], optional = true }
swc_ecma_transforms_classes = { version = "=30.0.0", optional = true }
swc_ecma_transforms_compat = { version = "=35.0.0", optional = true }
swc_ecma_transforms_macros = { version = "=1.0.1", optional = true }
swc_ecma_transforms_optimization = { version = "=32.0.0", optional = true }
swc_ecma_transforms_proposal = { version = "=30.0.0", optional = true }
swc_ecma_transforms_react = { version = "=33.0.0", optional = true }
swc_ecma_transforms_typescript = { version = "=33.0.0", optional = true }
swc_ecma_utils = { version = "=24.0.0", optional = true }
swc_ecma_visit = { version = "=18.0.1", optional = true }
swc_eq_ignore_macros = "=1.0.1"
swc_bundler = { version = "=35.0.0", optional = true }
swc_graph_analyzer = { version = "=14.0.1", optional = true }
swc_macros_common = { version = "=1.0.1", optional = true }
swc_sourcemap = { version = "=9.3.4", optional = true }
swc_ts_fast_strip = { version = "=36.0.0", optional = true }
swc_trace_macro = { version = "=2.0.2", optional = true }
swc_visit = { version = "=2.0.1", optional = true }
thiserror = "2.0.12"
[dev-dependencies]
pretty_assertions = "1.4.1"
serde_json = { version = "1.0.140", features = ["preserve_order"] }
[patch.crates-io]
deno_media_type = { path = "../deno_media_type" }