Files
komodo/lib/monitor_client/Cargo.toml
2023-01-02 07:16:55 +00:00

22 lines
593 B
TOML

[package]
name = "monitor_client"
version = "0.1.1"
edition = "2021"
authors = ["MoghTech"]
description = "a client to interact with the monitor system"
license = "GPL v3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# monitor_types = "0.1.0"
monitor_types = { path = "../types" }
reqwest = { version = "0.11", features = ["json"] }
tokio-tungstenite = { version = "0.18", features=["native-tls"] }
tokio = "1.23"
tokio-util = "0.7"
anyhow = "1.0"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
futures-util = "0.3"