forked from rescript-lang/rewatch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
40 lines (35 loc) · 807 Bytes
/
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
[package]
name = "rewatch"
version = "1.0.9"
edition = "2021"
[dependencies]
notify = { version = "5.1.0", features = ["serde"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_derive = "1.0.152"
serde_json = { version = "1.0.93" }
ahash = "0.8.3"
convert_case = "0.6.0"
rayon = "1.6.1"
log = { version = "0.4.17", features = [
"max_level_debug",
"release_max_level_warn",
] }
env_logger = "0.10.0"
indicatif = "0.17.3"
console = "0.15.5"
blake3 = "1.3.3"
notify-debouncer-mini = { version = "0.2.0" }
regex = "1.7.1"
futures = "0.3.25"
futures-timer = "3.0.2"
clap = { version = "4.3.17", features = ["derive"] }
sysinfo = "0.29.10"
ctrlc = "3.4.4"
[profile.release]
codegen-units = 1
lto = true
[dev-dependencies]
criterion = "0.4"
[[bench]]
name = "base_bench"
harness = false