-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Cargo.toml
63 lines (55 loc) · 1.45 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
[package]
name = "protoc_gen_ts"
version = "0.1.0"
authors = ["Sahin <[email protected]>"]
edition = "2018"
[lib]
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "protoc-gen-ts"
path = "src/main.rs"
[[bin]]
name = "ast-dump"
path = "tests/helper/ast.rs"
[dependencies]
swc_atoms = "0.5.5"
swc_common = {version = "0.31.8", features = ["tty-emitter"]}
swc_ecma_ast = {version = "0.104.1", features=["serde-impl"]}
num-bigint = { version = "0.4", features = ["serde"] }
swc_ecma_codegen = "0.139.2"
swc_ecma_codegen_macros = "0.7.2"
swc_ecma_parser = "0.134.1"
swc_ecma_utils = "0.117.1"
serde = "1.0.163"
serde_json = "1.0.96"
triomphe = "0.1.8"
protobuf = "3.1.0"
once_cell = "1.17.1"
swc_ecma_visit = "0.90.4"
pathdiff = "0.2.1"
dashmap = "5.4.0"
crossbeam-utils = "0.8.15"
anyhow = "1.0.75"
wasm-bindgen = "0.2.88"
console_error_panic_hook = "0.1.7"
convert_case = "0.6.0"
[build-dependencies]
protobuf-codegen = "3.1.0"
cargo-patch = "0.3.2"
swc_common = {version = "0.31.8", features = ["tty-emitter"]}
swc_ecma_ast = {version = "0.104.1", features=["serde-impl"]}
swc_ecma_parser = "0.134.1"
serde = "1.0.163"
serde_json = "1.0.96"
[dev-dependencies]
glob = "0.3.1"
cfg-if = "1.0.0"
protobuf-parse = "=3.4.0"
pretty_assertions_sorted = "1.2.3"
[patch.crates-io]
protobuf-parse = { path = './target/patch/protobuf-parse-3.4.0' }
[package.metadata.patch.protobuf-parse]
version = "3.4.0"
patches = [
{ path = "./patches/pure_mod.patch", source = "GithubPrDiff" },
]