-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: cleaner event emitter and upgrade to sysinfo 0.30
- Loading branch information
Showing
14 changed files
with
182 additions
and
202 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "metrsd" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
edition = "2021" | ||
authors = ["nanocl contributors <[email protected]>"] | ||
description = "The Metrs daemon" | ||
|
@@ -17,13 +17,13 @@ path = "src/main.rs" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
clap = { version = "4.4.11", features = ["derive"] } | ||
env_logger = "0.10.1" | ||
futures = "0.3.29" | ||
log = "0.4.20" | ||
ntex = { version = "0.7.16", features = ["tokio"] } | ||
serde = { version = "1.0.193", features = ["derive"] } | ||
serde_json = "1.0.108" | ||
sysinfo = "0.29.11" | ||
tokio = "1.35.0" | ||
metrs_stubs = { version = "0.4.1", features = ["serde", "sysinfo"] } | ||
clap = { version = "4.4", features = ["derive"] } | ||
env_logger = "0.10" | ||
futures = "0.3" | ||
log = "0.4" | ||
ntex = { version = "0.7", features = ["tokio"] } | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
sysinfo = "0.30" | ||
tokio = "1.35" | ||
metrs_stubs = { version = "0.5", features = ["serde", "sysinfo", "bytes"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.