[package]
edition = "2024"
rust-version = "1.95.0"
name = "freshdock"
version = "1.2.1"
authors = ["Turbootzz <thijs@bendy.nl>"]
build = false
exclude = [
".github/",
"docs/",
"examples/",
"RELEASE.md",
"RELEASE_NOTES.md",
"freshdock.toml.example",
"book.toml",
"book/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modern Rust-based Docker container auto-updater: a maintained, health-gated, single-binary successor to Watchtower."
homepage = "https://github.com/Turbootzz/freshdock"
documentation = "https://docs.rs/freshdock"
readme = "README.md"
keywords = [
"docker",
"container",
"watchtower",
"auto-update",
"devops",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/Turbootzz/freshdock"
[lib]
name = "freshdock"
path = "src/lib.rs"
[[bin]]
name = "freshdock"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "notify_mock"
path = "tests/notify_mock.rs"
[[test]]
name = "recreate_roundtrip_live"
path = "tests/recreate_roundtrip_live.rs"
[[test]]
name = "registry_digest"
path = "tests/registry_digest.rs"
[[test]]
name = "registry_mock"
path = "tests/registry_mock.rs"
[[test]]
name = "rename_helper"
path = "tests/rename_helper.rs"
[[test]]
name = "scheduler_live"
path = "tests/scheduler_live.rs"
[[test]]
name = "spec_roundtrip"
path = "tests/spec_roundtrip.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.bollard]
version = "0.21"
[dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dependencies.clap]
version = "4.6"
features = [
"derive",
"env",
]
[dependencies.comfy-table]
version = "7"
[dependencies.futures]
version = "0.3"
[dependencies.lettre]
version = "0.11"
features = [
"builder",
"smtp-transport",
"tokio1-rustls",
"aws-lc-rs",
"webpki-roots",
]
default-features = false
[dependencies.reqwest]
version = "0.13"
features = [
"rustls",
"json",
"http2",
"charset",
"query",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.52"
features = [
"rt-multi-thread",
"macros",
"signal",
"time",
"sync",
]
[dependencies.toml]
version = "1.1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.tokio]
version = "1.52"
features = ["test-util"]
[dev-dependencies.wiremock]
version = "0.6"