Initial
This commit is contained in:
commit
3f60b72c3b
48 changed files with 6599 additions and 0 deletions
34
Cargo.toml
Normal file
34
Cargo.toml
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
[package]
|
||||
name = "docker-compose-updater"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Andras Schmelczer <andras@schmelczer.dev>"]
|
||||
description = "Automatically update Docker Compose image versions"
|
||||
license = "MIT"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1.0", features = ["rt-multi-thread", "macros", "time", "fs", "net", "io-util"] }
|
||||
reqwest = { version = "0.12", features = ["json"] }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
serde_yaml = "0.9"
|
||||
semver = "1.0"
|
||||
anyhow = "1.0"
|
||||
regex = "1.10"
|
||||
cron = "0.12"
|
||||
clap = { version = "4.0", features = ["derive"] }
|
||||
async-trait = "0.1"
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = "0.3"
|
||||
chrono = "0.4"
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3.0"
|
||||
|
||||
[lib]
|
||||
name = "docker_compose_updater"
|
||||
path = "src/lib.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "docker-compose-updater"
|
||||
path = "src/main.rs"
|
||||
Loading…
Add table
Add a link
Reference in a new issue