diff --git a/Cargo.lock b/Cargo.lock index 48e876a..c0a4bc7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -287,7 +287,7 @@ checksum = "6aa2c4e539b869820a2b82e1aef6ff40aa85e65decdd5185e83fb4b1249cd00f" [[package]] name = "nyanit" -version = "0.1.1" +version = "0.1.2" dependencies = [ "ratatui", "ratatui-textarea", diff --git a/Cargo.toml b/Cargo.toml index 667ec31..007d775 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "nyanit" -version = "0.1.1" +version = "0.1.2" edition = "2024" [dependencies] ratatui = { version = "0.30", default-features = false, features = ["termion"] } ratatui-textarea = { version = "0.9", default-features = false, features = ["termion"] } -regex = "1.12.4" +regex = "1.12" termion = "4" diff --git a/src/nyan_system.rs b/src/nyan_system.rs index f0e7524..fd3f3b9 100644 --- a/src/nyan_system.rs +++ b/src/nyan_system.rs @@ -223,7 +223,7 @@ pub fn prepare_env() -> Result<(), ExecCommandError> { exec_command("mount", &vec!["-t", "sysfs", "none", "/sys"])?; // modprobe bcachefs - exec_command("modprobe", &vec!["bcachefs"])?; + // exec_command("modprobe", &vec!["bcachefs"])?; Ok(()) }