-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathCargo.toml
47 lines (42 loc) · 1.01 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
[package]
name = "toast"
version = "0.47.6"
authors = ["Stephan Boyer <[email protected]>"]
edition = "2021"
description = "Containerize your development and continuous integration environments."
license = "MIT"
documentation = "https://github.com/stepchowfun/toast"
homepage = "https://github.com/stepchowfun/toast"
repository = "https://github.com/stepchowfun/toast"
readme = "README.md"
[lints]
clippy.all = { level = "deny", priority = -1 }
clippy.default_numeric_fallback = "deny"
clippy.pedantic = { level = "deny", priority = -1 }
rust.warnings = "deny"
[dependencies]
atty = "0.2"
colored = "2"
crossbeam = "0.8"
dirs = "3"
env_logger = "0.8"
hex = "0.4"
indicatif = "0.16"
lazy_static = "1.4"
log = "0.4"
scopeguard = "1"
serde_yaml = "0.8"
sha2 = "0.9"
tar = "0.4"
tempfile = "3"
typed-path = "0.3"
walkdir = "2"
[dependencies.clap]
version = "2"
features = ["wrap_help"]
[dependencies.ctrlc]
version = "3"
features = ["termination"] # [tag:ctrlc_term]
[dependencies.serde]
version = "1"
features = ["derive"]