monitor cli 0.1.1

This commit is contained in:
mbecker20
2023-01-10 09:29:07 +00:00
parent f61f38be7e
commit ef0522b200
8 changed files with 60 additions and 17 deletions

View File

@@ -6,6 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
types = { package = "monitor_types", path = "../types" }
types = { package = "monitor_types", version = "0.1.2" }
# types = { package = "monitor_types", path = "../types" }
mungos = "0.3.0"
anyhow = "1.0"

View File

@@ -9,8 +9,8 @@ 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.1.1"
monitor_types = { path = "../types" }
monitor_types = "0.1.2"
# monitor_types = { path = "../types" }
reqwest = { version = "0.11", features = ["json"] }
tokio-tungstenite = { version = "0.18", features=["native-tls"] }
tokio = "1.23"

View File

@@ -6,8 +6,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
types = { package = "monitor_types", path = "../types" }
helpers = { package = "monitor_helpers", path = "../helpers" }
helpers = { package = "monitor_helpers", version = "0.1.1" }
types = { package = "monitor_types", version = "0.1.2" }
# types = { package = "monitor_types", path = "../types" }
# helpers = { package = "monitor_helpers", path = "../helpers" }
tokio-tungstenite = { version = "0.18", features=["native-tls"] }
tokio = "1.23"
reqwest = { version = "0.11", features = ["json"] }