diff --git a/Cargo.toml b/Cargo.toml index 1bf71e0..049fcef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "sys-compare" description = "Track Filesystem Integrity via 'Snapshots' which contain a HashMap of the files and their corresponding hash signature from a specified directory." -version = "0.2.1" +version = "0.2.2" edition = "2021" authors = ["james@koonts.net"] license = "MIT" diff --git a/src/createmode.rs b/src/createmode.rs index e13906e..287b51e 100644 --- a/src/createmode.rs +++ b/src/createmode.rs @@ -41,6 +41,7 @@ impl CreateMode { "/dev".to_string(), "/proc".to_string(), "/tmp".to_string(), + "/sys".to_string(), ])?; self.snapshot = snapshot.clone(); if let Ok(e) = snapshot.file_hashes.lock() {