deps: Upgrade crossterm and sysinfo (#105)

This commit is contained in:
Clement Tsang
2020-04-05 23:20:22 -04:00
committed by GitHub
parent 15a3eb4c7e
commit a40ddce84f
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -35,8 +35,8 @@ pub async fn get_network_data(
if cfg!(target_os = "windows") {
let networks = sys.get_networks();
for (_, network) in networks {
total_rx += network.get_total_income();
total_tx += network.get_total_outcome();
total_rx += network.get_total_received();
total_tx += network.get_total_transmitted();
}
} else {
while let Some(io) = io_data.next().await {