-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (79 loc) · 2.06 KB
/
Cargo.toml
File metadata and controls
83 lines (79 loc) · 2.06 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
[workspace]
members = ["./crates/*"]
resolver = "2"
[workspace.package]
version = "0.5.3"
edition = "2024"
license = "MIT"
[workspace.dependencies]
anyhow = "1.0.83"
bincode = { version = "2", features = ["serde"] }
boxcar = "0.2.8"
clap = { version = "4.5.18", features = ["derive"] }
colored = "2.0.4"
convert_case = "0.8.0"
crossbeam = "0.8"
dashmap = "6.0.1"
deluxe = "0.5.0"
hex = "0.4.3"
indexmap = "2.10.0"
lazy_static = "1.4"
log = { version = "0.4.17", features = ["kv_unstable", "kv_unstable_std"] }
logos = "0.12"
lru = "0.13"
lsp-server = "0.7.2"
lsp-types = "0.97.0"
md-5 = "0.10.6"
notify = "7.0.0"
notify-debouncer-full = "0.4.0"
once_cell = "1.8.0"
once_map = "0.4.20"
opentelemetry = { version = "0.20", features = ["rt-tokio"] }
opentelemetry-otlp = { version = "0.13", features = ["grpc-tonic"] }
pathdiff = "0.2.1"
pretty-duration = "0.1.1"
proc-macro2 = "1.0.92"
quote = "1.0.38"
regex = "1.6.0"
schemars = { version = "0.8.11", features = ["indexmap1"] }
serde = "1.0.197"
serde_derive = "1.0.197"
serde_json = "1.0.108"
sha2 = "0.10.8"
strum = { version = "0.27.0", features = ["derive"] }
swc_atoms = "2.0.0"
swc_core = "3.0.0"
swc_ecma_parser = "3.0.0"
swc_ecma_transforms_testing = "3.0.0"
swc_ecma_utils = "3.0.0"
swc_plugin_macro = "=1.0.0"
swc_trace_macro = "2.0.0"
syn = "2.0.96"
testing = "2.0.0"
thiserror = "1.0.40"
tinyvec = "1.8.1"
tokio = { version = "1.35.0", features = ["full"] }
tracing = "0.1.41"
tracing-opentelemetry = "0.21"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
url = { version = "2.0.0", features = ["serde"] }
[profile.release.package.swc_isograph_plugin]
codegen-units = 1
# Optimize for size
opt-level = "s"
# Strip debug symbols
strip = "symbols"
[workspace.lints.clippy]
print_stderr = "deny"
print_stdout = "deny"
explicit_deref_methods = "deny"
explicit_into_iter_loop = "deny"
match_wild_err_arm = "deny"
unnecessary_join = "deny"
unused_self = "deny"
needless_for_each = "deny"
struct_field_names = "deny"
cast_precision_loss = "deny"
match_bool = "deny"
items_after_statements = "deny"
single_char_pattern = "deny"