0.2.10 add renaming functionality

This commit is contained in:
mbecker20
2023-03-22 20:33:26 +00:00
parent 5ad87c03ed
commit 349fc297ce
9 changed files with 26 additions and 26 deletions

34
Cargo.lock generated
View File

@@ -740,7 +740,7 @@ checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
[[package]]
name = "core"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"async_timing_util",
@@ -759,7 +759,7 @@ dependencies = [
"hmac",
"jwt",
"monitor_helpers",
"monitor_types 0.2.9",
"monitor_types 0.2.10",
"mungos",
"periphery_client",
"serde",
@@ -993,10 +993,10 @@ checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb"
[[package]]
name = "db_client"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"monitor_types 0.2.9",
"monitor_types 0.2.10",
"mungos",
]
@@ -1857,12 +1857,12 @@ dependencies = [
[[package]]
name = "monitor_cli"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"async_timing_util",
"clap",
"colored",
"monitor_types 0.2.9",
"monitor_types 0.2.10",
"rand",
"run_command",
"serde",
@@ -1874,12 +1874,12 @@ dependencies = [
[[package]]
name = "monitor_client"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"envy",
"futures-util",
"monitor_types 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)",
"monitor_types 0.2.10 (registry+https://github.com/rust-lang/crates.io-index)",
"reqwest",
"serde",
"serde_derive",
@@ -1891,11 +1891,11 @@ dependencies = [
[[package]]
name = "monitor_helpers"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"axum",
"monitor_types 0.2.9",
"monitor_types 0.2.10",
"rand",
"serde",
"serde_json",
@@ -1904,7 +1904,7 @@ dependencies = [
[[package]]
name = "monitor_periphery"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"async_timing_util",
@@ -1916,7 +1916,7 @@ dependencies = [
"envy",
"futures",
"monitor_helpers",
"monitor_types 0.2.9",
"monitor_types 0.2.10",
"run_command",
"serde",
"serde_derive",
@@ -1930,7 +1930,7 @@ dependencies = [
[[package]]
name = "monitor_types"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"bollard",
@@ -1947,9 +1947,9 @@ dependencies = [
[[package]]
name = "monitor_types"
version = "0.2.9"
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7de716e157711aac3646ae9faddf6d48cefc0d3e163cdf1b5a72bb034a353fef"
checksum = "7bf35db6341431dea9f062f5d676305a213834638410fb9cdc49ca2521635c43"
dependencies = [
"anyhow",
"bollard",
@@ -2196,11 +2196,11 @@ checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
[[package]]
name = "periphery_client"
version = "0.2.9"
version = "0.2.10"
dependencies = [
"anyhow",
"futures-util",
"monitor_types 0.2.9",
"monitor_types 0.2.10",
"reqwest",
"serde",
"serde_json",

View File

@@ -1,6 +1,6 @@
[package]
name = "monitor_cli"
version = "0.2.9"
version = "0.2.10"
edition = "2021"
authors = ["MoghTech"]
description = "monitor cli | tools to setup monitor system"

View File

@@ -1,6 +1,6 @@
[package]
name = "core"
version = "0.2.9"
version = "0.2.10"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -1,6 +1,6 @@
[package]
name = "db_client"
version = "0.2.9"
version = "0.2.10"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

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

View File

@@ -1,6 +1,6 @@
[package]
name = "monitor_client"
version = "0.2.9"
version = "0.2.10"
edition = "2021"
authors = ["MoghTech"]
description = "a client to interact with the monitor system"
@@ -9,7 +9,7 @@ license = "GPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
monitor_types = "0.2.9"
monitor_types = "0.2.10"
# monitor_types = { path = "../types" }
reqwest = { version = "0.11", features = ["json"] }
tokio-tungstenite = { version = "0.18", features=["native-tls"] }

View File

@@ -1,6 +1,6 @@
[package]
name = "periphery_client"
version = "0.2.9"
version = "0.2.10"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

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

View File

@@ -1,6 +1,6 @@
[package]
name = "monitor_periphery"
version = "0.2.9"
version = "0.2.10"
edition = "2021"
authors = ["MoghTech"]
description = "monitor periphery binary"