-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (51 loc) · 1.42 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
[package]
name = "jymfony-compiler"
description = "Jymfony compiler"
repository = "https://github.com/jymfony/compiler.git"
license = "MIT"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
simd = []
[dependencies]
anyhow = { version = "1", features = ["backtrace"] }
base64 = "0.22.1"
getrandom = { version = "0.2.10", features = ["js"] }
js-sys = "0.3"
lazy_static = "1.4.0"
mini-moka = { version = "0.10.3" }
rand = "0.8.5"
rustc-hash = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde-wasm-bindgen = "0.6"
sourcemap = "8.0"
swc_atoms = "0.6.0"
swc_cached = "0.3.18"
swc_common = { version = "0.36.2", features = ["anyhow", "sourcemap"] }
swc_ecma_ast = { version = "0.117.4", features = ["default", "serde"] }
swc_ecma_codegen = "0.154.4"
swc_ecma_parser = "0.148.1"
swc_ecma_transforms_base = "0.143.3"
swc_ecma_transforms_compat = "0.169.2"
swc_ecma_transforms_module = "0.186.3"
swc_ecma_transforms_proposal = "0.177.1"
swc_ecma_transforms_typescript = "0.194.3"
swc_ecma_visit = "0.103.3"
swc_ecma_utils = "0.133.4"
url = "2.4"
uuid = { version = "1.5.0", features = ["v4"] }
uuid-simd = "0.8.0"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
wasm-bindgen-derive = "0.3"
[dev-dependencies]
ansi_term = "0.12.1"
hex = "0.4.3"
sha1 = "0.10.6"
swc_ecma_transforms_testing = "0.146.2"
tempfile = "3.8.0"
testing = "0.38.1"
wasm-bindgen-test = "0.3"
[profile.release]
opt-level = 3