types 0.1.4 fix extra_args update diff

This commit is contained in:
mbecker20
2023-01-11 06:22:25 +00:00
parent 664a585bdd
commit 3b574341f2
4 changed files with 14 additions and 13 deletions

20
Cargo.lock generated
View File

@@ -409,7 +409,7 @@ dependencies = [
"hmac",
"jwt",
"monitor_helpers 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3",
"mungos",
"periphery_client",
"serde",
@@ -647,7 +647,7 @@ name = "db_client"
version = "0.1.0"
dependencies = [
"anyhow",
"monitor_types 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3",
"mungos",
]
@@ -1492,7 +1492,7 @@ version = "0.1.2"
dependencies = [
"anyhow",
"futures-util",
"monitor_types 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3",
"reqwest",
"serde",
"serde_derive",
@@ -1512,7 +1512,7 @@ dependencies = [
"bollard",
"futures",
"futures-util",
"monitor_types 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3",
"rand",
"run_command",
"serde",
@@ -1533,7 +1533,7 @@ dependencies = [
"bollard",
"futures",
"futures-util",
"monitor_types 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3",
"rand",
"run_command",
"serde",
@@ -1556,7 +1556,7 @@ dependencies = [
"envy",
"futures-util",
"monitor_helpers 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3",
"run_command",
"serde",
"serde_derive",
@@ -1571,6 +1571,8 @@ dependencies = [
[[package]]
name = "monitor_types"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8d9ee441af164c77f15c6530be57e7a8b7f206702a6285ca2ff82505f1202b6"
dependencies = [
"anyhow",
"bollard",
@@ -1587,9 +1589,7 @@ dependencies = [
[[package]]
name = "monitor_types"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8d9ee441af164c77f15c6530be57e7a8b7f206702a6285ca2ff82505f1202b6"
version = "0.1.4"
dependencies = [
"anyhow",
"bollard",
@@ -1844,7 +1844,7 @@ dependencies = [
"anyhow",
"futures-util",
"monitor_helpers 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.1.3",
"reqwest",
"serde",
"serde_json",

View File

@@ -8,8 +8,8 @@ edition = "2021"
[dependencies]
# helpers = { package = "monitor_helpers", path = "../lib/helpers" }
# types = { package = "monitor_types", path = "../lib/types" }
helpers = { package = "monitor_helpers", version = "0.1.1" }
types = { package = "monitor_types", version = "0.1.2" }
helpers = { package = "monitor_helpers", version = "0.1.2" }
types = { package = "monitor_types", version = "0.1.3" }
db = { package = "db_client", path = "../lib/db_client" }
periphery = { package = "periphery_client", path = "../lib/periphery_client" }
axum_oauth2 = { path = "../lib/axum_oauth2" }

View File

@@ -1,6 +1,6 @@
[package]
name = "monitor_types"
version = "0.1.3"
version = "0.1.4"
edition = "2021"
authors = ["MoghTech"]
description = "types for the mogh tech monitor"

View File

@@ -37,6 +37,7 @@ pub fn docker_run_args_diff_no_change(dra: &DockerRunArgsDiff) -> bool {
&& vec_diff_no_change(&dra.environment)
&& vec_diff_no_change(&dra.ports)
&& vec_diff_no_change(&dra.volumes)
&& vec_diff_no_change(&dra.extra_args)
&& restart_mode_diff_no_change(&dra.restart)
}