Skip to content

Commit

Permalink
chore(deps): update all dependencies of the Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
wangeguo committed Apr 3, 2024
1 parent 07b9476 commit 6351c70
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "amp-common"
description = "Rust libraries shared across Amphitheatre components and libraries"
version = "0.7.8"
version = "0.8.0"
edition = "2021"
license = "Apache-2.0"
homepage = "https://amphitheatre.app"
Expand All @@ -10,28 +10,28 @@ readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.66"
chrono = "0.4.23"
confy = "0.6.0"
anyhow = "1.0.81"
chrono = "0.4.37"
confy = "0.6.1"
convert_case = "0.6.0"
data-encoding = "2.3.3"
data-encoding = "2.5.0"
dirs = "5.0.1"
json_comments = "0.2.1"
k8s-openapi = { version = "0.21.0", default-features = false, features = ["schemars", "v1_28"] }
json_comments = "0.2.2"
k8s-openapi = { version = "0.21.1", default-features = false, features = ["schemars", "v1_28"] }
kube = { version = "0.89.0", default-features = false, features = ["client", "runtime", "derive", "rustls-tls"] }
notify = "6.0.1"
oci-distribution = { version = "0.10.0", default-features = false, features = ["rustls-tls", "test-registry"] }
schemars = "0.8.12"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.89"
thiserror = "1.0.43"
toml = "0.8.0"
tracing = "0.1.37"
ureq = { version = "2.5.0", features = ["json"] }
url = "2.3.1"
utoipa = { version = "4.1.0", features = ["axum_extras", "uuid", "chrono"] }
notify = "6.1.1"
oci-distribution = { version = "0.11.0", default-features = false, features = ["rustls-tls", "test-registry"] }
schemars = "0.8.16"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
thiserror = "1.0.58"
toml = "0.8.12"
tracing = "0.1.40"
ureq = { version = "2.9.6", features = ["json"] }
url = "2.5.0"
utoipa = { version = "4.2.0", features = ["axum_extras", "uuid", "chrono"] }
validator = { version = "0.17.0", features = ["derive"] }

[dev-dependencies]
assert_matches = "1.5"
mockito = "1.1.0"
assert_matches = "1.5.0"
mockito = "1.4.0"
2 changes: 1 addition & 1 deletion src/docker/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ use super::DockerCredential;

/// Check if the docker image exists on remote registry.
pub async fn exists(image: &str, credential: Option<DockerCredential>) -> anyhow::Result<bool> {
let mut client = Client::new(ClientConfig::default());
let client = Client::new(ClientConfig::default());
let reference: Reference = image.parse()?;

let auth = match credential {
Expand Down

0 comments on commit 6351c70

Please sign in to comment.