-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 929 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
[package]
authors = [
"Dustin Martin <[email protected]>",
"picoCTF Team <[email protected]>",
]
description = "Command line tool for removing expired Docker resources"
edition = "2021"
license = "MIT OR Apache-2.0"
name = "docker-reaper"
repository = "https://github.com/picoCTF/docker-reaper"
version = "1.0.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.92"
bollard = { version = "0.17.1", features = ["ssl"] }
chrono = { version = "0.4.37", default-features = false, features = [
"std",
"clock",
] }
clap = { version = "4.5.20", features = ["derive"] }
futures = "0.3.31"
go-parse-duration = "0.1.1"
tabled = "0.16.0"
thiserror = "1.0.66"
tokio = { version = "1.41.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
[dev-dependencies]
serial_test = { version = "3.1.1" }
tokio-stream = "0.1.16"