-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (37 loc) · 1.41 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
[package]
name = "typescript_utils"
version = "0.1.0"
authors = ["HiRoFa <[email protected]>"]
edition = "2021"
description = "Typescript transpiler for GreenCopper"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
swc = "0.236"
#swc = {path="../swc"}
#swc = {git="https://github.com/HiRoFa/swc"}
#swc = {git="https://github.com/swc-project/swc"}
#swc_ecma_parser = {version = "0.57.1"}
#swc_ecma_parser = {path="../swc/ecmascript/parser"}
swc_ecma_parser = "0.123"
#swc_ecma_parser = {git="https://github.com/swc-project/swc"}
#swc_common = {version="0.10.20", features=["tty-emitter"]}
#swc_common = {path="../swc/common", features=["tty-emitter"]}
#swc_common = {git="https://github.com/swc-project/swc", features=["tty-emitter"]}
swc_common = {version = "0.29", features = ["tty-emitter"]}
swc_ecma_minifier = "0.160"
#hirofa_utils = {git = "https://github.com/HiRoFa/utils"}
#hirofa_utils = "0.7"
#hirofa_utils = {path = "../utils"}
#quickjs_runtime = {path = "../quickjs_es_runtime"}
#quickjs_runtime = {git = "https://github.com/HiRoFa/quickjs_es_runtime"}
quickjs_runtime = "0.10"
serde_json = "1.0"
log = "0.4"
futures = "0.3"
[dev-dependencies]
simple-logging = "2"
[dev-dependencies.cargo-husky]
version = "1.5.0"
default-features = false # Disable features which are enabled by default
features = ["precommit-hook", "run-cargo-test", "run-cargo-clippy"]