-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (61 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
68 lines (61 loc) · 1.57 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
[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Useful cli tools"
edition = "2021"
license = "Apache-2.0"
name = "ddt"
repository = "https://github.com/swc-project/ddt.git"
version = "0.3.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ahash = "0.8.0"
anyhow = "1.0.0"
async-recursion = "1.0.5"
async-trait = "0.1.73"
auto_impl = "1.1.0"
cached = "0.54.0"
cargo_metadata = "0.15.2"
chrono = "0.4.31"
clap = { version = "4.0.29", features = ["derive"] }
dialoguer = { version = "0.11.0", features = ["completion"] }
futures = "0.3.25"
hstr = { version = "0.2.5", features = ["serde"] }
humansize = "2.1.3"
indexmap = "2.7.1"
inferno = "0.11.17"
is_executable = "1.0.1"
once_cell = "1.18.0"
rayon = "1.7.0"
regex = "1.9.5"
reqwest = "0.11.22"
rustc-hash = "2.1.1"
semver = { version = "1.0.18", features = ["serde"] }
serde = { version = "1.0.148", features = ["derive"] }
serde_json = "1.0.89"
signal-hook = "0.3.17"
swc_malloc = "1.0.0"
tempfile = "3.8.0"
tokio = { version = "1.22.0", features = [
"rt",
"macros",
"rt-multi-thread",
"process",
"fs",
"sync",
] }
toml_edit = { version = "0.22.24", features = ["serde"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["fmt"] }
which = { version = "7.0.2", features = ["tracing"] }
[profile.release]
lto = "off"
# Strip debug symbols
# strip = "symbols"
[profile.bench]
debug = true
[profile.dev]
split-debuginfo = "unpacked"
[profile.dev.build-override]
opt-level = 3
[profile.dev.package."*"]
opt-level = 3