Compare commits

...

2 Commits

Author SHA1 Message Date
ebb1320b9e Update Rust crate thiserror to 1.0.50
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2023-10-20 00:07:25 +00:00
7b25a9cc96 Update Rust crate tokio to 1.33.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2023-10-10 00:06:28 +00:00
2 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View File

@@ -1542,18 +1542,18 @@ dependencies = [
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.49" version = "1.0.50"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4" checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
dependencies = [ dependencies = [
"thiserror-impl", "thiserror-impl",
] ]
[[package]] [[package]]
name = "thiserror-impl" name = "thiserror-impl"
version = "1.0.49" version = "1.0.50"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@@ -1577,9 +1577,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]] [[package]]
name = "tokio" name = "tokio"
version = "1.32.0" version = "1.33.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653"
dependencies = [ dependencies = [
"backtrace", "backtrace",
"bytes", "bytes",

View File

@@ -12,11 +12,11 @@ anyhow = "1.0.75"
serde = { version = "1.0.185", features = ["derive"] } serde = { version = "1.0.185", features = ["derive"] }
serde_json = "1.0.105" serde_json = "1.0.105"
schemars = "0.8.15" schemars = "0.8.15"
tokio = { version = "1.32.0", features = ["full"] } tokio = { version = "1.33.0", features = ["full"] }
kube = { version = "0.85.0", features = ["runtime", "derive"] } kube = { version = "0.85.0", features = ["runtime", "derive"] }
k8s-openapi = { version = "0.19.0", features = ["v1_27"] } k8s-openapi = { version = "0.19.0", features = ["v1_27"] }
futures = "0.3.28" futures = "0.3.28"
thiserror = "1.0.49" thiserror = "1.0.50"
rand = "0.8.5" rand = "0.8.5"
mktemp = "0.5.1" mktemp = "0.5.1"
reqwest = "0.11.20" reqwest = "0.11.20"