Revert a dep to older version

This commit is contained in:
Luke D Jones
2020-08-28 22:20:21 +12:00
parent 855d4dc701
commit 772538bc8a
3 changed files with 23 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "asus-nb-ctrl"
version = "1.0.3"
version = "1.0.4"
license = "MPL-2.0"
readme = "README.md"
authors = ["Luke <luke@ljones.dev>"]
@@ -23,7 +23,7 @@ path = "src/daemon.rs"
[dependencies]
asus-nb = { path = "../asus-nb" }
rusb = "^0.6.0"
rusb = "=0.6.0"
udev = "^0.4.0"
async-trait = "0.1.36"
@@ -46,4 +46,4 @@ toml = "0.4.6"
# Device control
sysfs-class = "^0.1.2" # used for backlight control and baord ID
# cpu power management
intel-pstate = "^0.2.1"
intel-pstate = "^0.2.1"

View File

@@ -23,7 +23,7 @@ use std::sync::Arc;
use tokio::sync::{mpsc::Receiver, Mutex};
use tokio::task::JoinHandle;
pub static VERSION: &str = "1.0.3";
pub static VERSION: &str = "1.0.4";
use ::dbus::{nonblock::SyncConnection, tree::Signal};