-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathCargo.toml
87 lines (69 loc) · 1.62 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
81
82
83
84
85
86
87
[package]
name = "CLAiR"
version = "0.1.0"
authors = ["Pascal Hertleif <[email protected]>"]
edition = "2018"
[[bin]]
name = "cli-args-vars"
path = "src/tutorial/cli-args-vars.rs"
[[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 = "errors-impl"
path = "src/tutorial/errors-impl.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.5.4", features = ["derive"] }
anyhow = "1.0.82"
indicatif = "0.17.8"
log = "0.4.21"
env_logger = "0.11"
serde_json = "1.0.116"
serde_derive = "1.0.199"
serde = "1.0.199"
ctrlc = "3.4.4"
crossbeam-channel = "0.5.12"
signal-hook = "0.3.17"