-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (75 loc) · 2.12 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (75 loc) · 2.12 KB
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
[package]
name = "oxker"
version = "0.13.4"
edition = "2024"
authors = ["Jack Wills <email@mrjackwills.com>"]
description = "A simple tui to view & control docker containers"
repository = "https://github.com/mrjackwills/oxker"
homepage = "https://github.com/mrjackwills/oxker"
license = "MIT"
rust-version = "1.95.0"
readme = "README.md"
keywords = ["docker", "tui", "tokio", "terminal", "podman"]
categories = ["command-line-utilities"]
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
expect_used = "warn"
todo = "warn"
unused_async = "warn"
unwrap_used = "warn"
module_name_repetitions = "allow"
doc_markdown = "allow"
similar_names = "allow"
[dependencies]
anyhow = "1.0"
bollard = "0.21"
cansi = "2.2"
clap = { version = "4.6", features = ["color", "derive", "unicode"] }
crossterm = "0.29"
directories = "6.0"
futures = "0.3"
futures-util = "0.3"
jiff = { version = "0.2", features = ["tzdb-bundle-always"] }
parking_lot = { version = "0.12" }
ratatui = "0.30"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
serde_jsonc = "1.0"
tokio = { version = "1.53", features = ["full"] }
tokio-util = "0.7"
toml = { version = "1.1", default-features = false, features = [
"parse",
"serde",
] }
tracing = "0.1"
tracing-subscriber = "0.3"
uuid = { version = "1.25", features = ["fast-rng", "v4"] }
[dev-dependencies]
insta = "1.48"
serde_json = { version = "1.0", features = ["preserve_order"] }
[profile.release]
lto = true
codegen-units = 1
panic = 'abort'
strip = true
debug = false
[package.metadata.deb]
maintainer = "Jack Wills <email@mrjackwills.com>"
copyright = "2022, Jack Wills <email@mrjackwills.com>"
license-file = ["LICENSE", "4"]
extended-description = """\
A simple tui to view & control docker containers."""
depends = ""
section = "utility"
priority = "optional"
assets = [
# target/release path is special, and gets replaced by cargo-deb with the actual target dir path.
[
"target/release/oxker",
"usr/bin/",
"755",
],
{ source = "README.md", dest = "usr/share/doc/oxker/README.md", mode = "644" },
{ source = "CONTRIBUTING.md", dest = "usr/share/doc/oxker/CONTRIBUTING.md", mode = "644" },
]