-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.26 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (36 loc) · 1.26 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
[package]
name = "trigger-docker-pull"
version = "2.0.0"
edition = "2021"
rust-version = "1.94.1"
description = "Webhook-driven Docker container updater. POST a container name, the matching image is pulled and the container is recreated if the digest changed."
license = "MIT"
readme = "README.md"
keywords = ["docker", "deploy", "webhook", "ci"]
categories = ["command-line-utilities"]
[dependencies]
anyhow = "=1.0.102"
axum = { version = "=0.8.9", default-features = false, features = ["http1", "tokio"] }
base64 = "=0.22.1"
bollard = "=0.21.0"
futures-util = { version = "=0.3.32", default-features = false }
serde_json = "=1.0.149"
tokio = { version = "=1.52.3", default-features = false, features = ["rt", "macros", "sync", "net", "signal", "io-util", "time"] }
tracing = "=0.1.44"
tracing-subscriber = { version = "=0.3.23", default-features = false, features = ["fmt"] }
[dev-dependencies]
tower = { version = "=0.5.2", default-features = false, features = ["util"] }
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"