helpers 0.1.3

This commit is contained in:
mbecker20
2023-01-11 06:29:40 +00:00
parent 713d7680c1
commit bda5a93ea4
3 changed files with 8 additions and 8 deletions

12
Cargo.lock generated
View File

@@ -408,7 +408,7 @@ dependencies = [
"hex",
"hmac",
"jwt",
"monitor_helpers 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_helpers 0.1.2",
"monitor_types 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"mungos",
"periphery_client",
@@ -1505,6 +1505,8 @@ dependencies = [
[[package]]
name = "monitor_helpers"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecd14e2022c3381028a5c94bf9a2cc591367a21d82a9126b991db9ddd091fb63"
dependencies = [
"anyhow",
"async_timing_util",
@@ -1523,9 +1525,7 @@ dependencies = [
[[package]]
name = "monitor_helpers"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ecd14e2022c3381028a5c94bf9a2cc591367a21d82a9126b991db9ddd091fb63"
version = "0.1.3"
dependencies = [
"anyhow",
"async_timing_util",
@@ -1555,7 +1555,7 @@ dependencies = [
"dotenv",
"envy",
"futures-util",
"monitor_helpers 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_helpers 0.1.2",
"monitor_types 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"run_command",
"serde",
@@ -1843,7 +1843,7 @@ version = "0.1.0"
dependencies = [
"anyhow",
"futures-util",
"monitor_helpers 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_helpers 0.1.2",
"monitor_types 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)",
"reqwest",
"serde",

View File

@@ -1,6 +1,6 @@
[package]
name = "monitor_helpers"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
authors = ["MoghTech"]
description = "helpers used as dependency for mogh tech monitor"

View File

@@ -7,7 +7,7 @@ edition = "2021"
[dependencies]
helpers = { package = "monitor_helpers", version = "0.1.1" }
types = { package = "monitor_types", version = "0.1.2" }
types = { package = "monitor_types", version = "0.1.4" }
# types = { package = "monitor_types", path = "../types" }
# helpers = { package = "monitor_helpers", path = "../helpers" }
tokio-tungstenite = { version = "0.18", features=["native-tls"] }