-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (55 loc) · 1.33 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
[[bin]]
name = "PEliminate"
path = "Source/Library.rs"
[[bin]]
name = "Eliminate"
path = "Source/Library.rs"
[dependencies]
# pieces = { version = "1.0.0", path = "../Pieces" }
chrono = { version = "0.4.39" }
clap = { features = ["derive"], version = "4.5.23" }
dashmap = { version = "6.1.0" }
futures = { version = "0.3.31" }
git2 = { version = "0.20.0" }
itertools = { version = "0.14.0" }
num_cpus = { version = "1.16.0" }
rayon = { version = "1.10.0" }
regex = { version = "1.11.1" }
swc_common = "5.0.0"
swc_ecma_ast = "5.0.1"
swc_ecma_codegen = "5.0.1"
swc_ecma_parser = "6.0.1"
swc_ecma_visit = "5.0.0"
tempfile = "3.15.0"
tokio = { version = "1.42.0", features = ["full"] }
unbug = { version = "0.4.0" }
walkdir = { version = "2.5.0" }
[build-dependencies]
serde = { version = "1.0.217", features = ["derive"] }
toml = { version = "0.8.19" }
[lib]
crate-type = ["staticlib", "cdylib", "rlib"]
name = "Library"
path = "Source/Library.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
default-run = "Eliminate"
description = "🗣️ Eliminate —"
license-file = "LICENSE"
name = "peliminate"
repository = "https://github.com/PlayForm/Eliminate.git"
version = "0.1.4"
edition = "2021"
include = [
"Source/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
"build.rs",
"Cargo.toml",
]
[features]
default = []