Skip to content

Commit

Permalink
Clean up cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
sondrelg committed Jun 23, 2024
1 parent 1e535f6 commit de3a98b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 14 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,41 +1,36 @@
[package]
name = "container-retention-policy"
version = "3.0.0-rc1"
version = "3.0.0-rc2"
edition = "2021"
license = "MIT"
publish = false

[dependencies]
clap = { version = "4.5.4", features = ["derive"]}

tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"], default-features = false }
indicatif = { version = "0.17.8", default-features = false }
tracing-indicatif = "0.3.6"
chrono = { version="0.4.37" , features=["serde", "clock"], default-features = false}
secrecy = { version = "0.8.0" }

urlencoding = { version="2.1.3" }
regex = { version = "1.10.4", default-features = false }
color-eyre = { version = "0.6.3", default-features = false }
humantime = "2.1.0"
wildmatch = { version = "2.3.3" }

indicatif = { version = "0.17.8", default-features = false }
lazy_static = { version = "1.4.0" , default-features = false}
regex = { version = "1.10.4", default-features = false }
reqwest = {version = "0.12.2", features = ["json", "rustls-tls"], default-features = false }
secrecy = { version = "0.8.0" }
serde = { version = "1.0.197", features = ["derive"], default-features = false }
serde_json = { version = "1.0.115", default-features = false }
tokio = { version = "1.36.0", features = ["rt-multi-thread", "macros"], default-features = false }
reqwest = {version = "0.12.2", features = ["json", "rustls-tls"], default-features = false }

lazy_static = { version = "1.4.0" , default-features = false}
url = { version = "2.5.0" , default-features = false}
color-eyre = { version = "0.6.3", default-features = false }
tower = { version = "0.4.13", default-features = false, features = ["limit"] }
serde_json = { version = "1.0.115", default-features = false }
tracing = { version = "0.1.40", default-features = false }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"], default-features = false }
tracing-indicatif = "0.3.6"
url = { version = "2.5.0" , default-features = false}
urlencoding = { version="2.1.3" }
wildmatch = { version = "2.3.3" }

[dev-dependencies]
assert_cmd = "2.0.14"
tracing-test = "0.2.4"
wildmatch = { version = "2.3.3" }


[profile.release]
# https://github.com/johnthagen/min-sized-rust
# Optimize release profile for size, as the runtime of the action
Expand Down
2 changes: 1 addition & 1 deletion development.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

To create a release we need to:

1. Manually trigger the [deploy](.github/workflows/release.yaml) workflow to build new images
1. Manually trigger the [`release`](.github/workflows/release.yaml) workflow to build new images
2. Update the image tag in the [action.yaml](action.yaml)
3. Push the change and create a GitHub release post for the repo

Expand Down

0 comments on commit de3a98b

Please sign in to comment.