-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
80 lines (64 loc) · 1.5 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "CLAiR"
version = "0.1.0"
authors = ["Pascal Hertleif <[email protected]>"]
edition = "2018"
[[bin]]
name = "cli-args-struct"
path = "src/tutorial/cli-args-struct.rs"
[[bin]]
name = "cli-args-clap"
path = "src/tutorial/cli-args-clap.rs"
[[bin]]
name = "impl-draft-shortcut"
path = "src/tutorial/impl-draft-shortcut.rs"
[[bin]]
name = "impl-draft"
path = "src/tutorial/impl-draft.rs"
[[bin]]
name = "errors-custom"
path = "src/tutorial/errors-custom.rs"
[[bin]]
name = "errors-exit"
path = "src/tutorial/errors-exit.rs"
[[bin]]
name = "output-progressbar"
path = "src/tutorial/output-progressbar.rs"
[[bin]]
name = "output-log"
path = "src/tutorial/output-log.rs"
[[bin]]
name = "machine-communication"
path = "src/in-depth/machine-communication.rs"
[[bin]]
name = "machine-communication-wc"
path = "src/in-depth/machine-communication-wc.rs"
[[bin]]
name = "machine-communication-stdin"
path = "src/in-depth/machine-communication-stdin.rs"
[[bin]]
name = "signals-ctrlc"
path = "src/in-depth/signals-ctrlc.rs"
[[bin]]
name = "signals-hooked"
path = "src/in-depth/signals-hooked.rs"
[[bin]]
name = "signals-channels"
path = "src/in-depth/signals-channels.rs"
[workspace]
members = [
"src/tutorial/testing",
]
[dependencies]
clap = { version = "4.3.0", features = ["derive"] }
anyhow = "1.0.71"
indicatif = "0.17.4"
log = "0.4.18"
env_logger = "0.10"
serde_json = "1.0.96"
serde_derive = "1.0.163"
serde = "1.0.163"
ctrlc = "3.4.0"
crossbeam-channel = "0.5.8"
signal-hook = "0.3.15"
is-terminal = "0.4.7"