forked from rust-cli/book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
71 lines (57 loc) · 1.29 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
[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 = "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 = "3.2", features = ["derive"] }
anyhow = "1.0"
indicatif = "0.17.0"
log = "0.4.17"
env_logger = "0.9"
serde_json = "1"
serde_derive = "1.0.140"
serde = "1.0.140"
ctrlc = "3.2.1"
crossbeam-channel = "0.5.6"
signal-hook = "0.3.14"