-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
39 lines (36 loc) · 896 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
[package]
name = "supdock"
description = "What's Up, Doc(ker)? A slightly more visual way to interact with the docker daemon"
version = "3.5.0"
authors = ["Niels Segers <[email protected]>"]
edition = "2021"
license = "MIT"
keyword = [
"docker",
"supdock",
"visual",
"interactive",
"wrapper",
"cli",
"compose",
"docker-compose",
]
categories = ["command-line-utilities", "virtualization"]
homepage = "https://github.com/segersniels/supdock/"
repository = "https://github.com/segersniels/supdock/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "4.2.1"
shell-words = "1.0.0"
strsim = "0.10.0"
strum = "0.24.1"
strum_macros = "0.24.3"
which = "4.4.0"
inquire = "0.1.0"
serde_json = "1.0.96"
env_logger = "0.10.1"
log = "0.4.20"
[profile.release]
panic = "abort"
strip = true
lto = "thin"