Skip to content

Commit

Permalink
fix: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed Dec 4, 2024
1 parent fb940c4 commit b8852e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rsrpc"
version = "0.21.0"
version = "0.21.1"
edition = "2018"
authors = ["spikehd"]

Expand All @@ -13,7 +13,7 @@ path = "src/lib.rs"
clap = { version = "4.5", features = ["derive"], optional = true }
reqwest = { version = "0.12", default-features = false, optional = true, features = ["blocking", "default-tls"] }

sysinfo = "0.32"
sysinfo = "0.33"
serde = { version = "1.0.166", features = ["derive"] }
serde_json = "1.0"
simple-websockets = { git = "https://github.com/SpikeHD/simple-websockets.git", branch = "master" }
Expand Down
2 changes: 1 addition & 1 deletion src/server/process.rs
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ impl ProcessServer {
pub fn process_list() -> Vec<Exec> {
let mut processes = Vec::new();
let sys =
System::new_with_specifics(RefreshKind::new().with_processes(ProcessRefreshKind::new().with_exe(UpdateKind::Always)));
System::new_with_specifics(RefreshKind::nothing().with_processes(ProcessRefreshKind::nothing().with_exe(UpdateKind::Always)));

for proc in sys.processes() {
processes.push(Exec {
Expand Down

0 comments on commit b8852e7

Please sign in to comment.