diff --git a/Cargo.lock b/Cargo.lock index d3cc28f..d4b549c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -72,7 +72,6 @@ dependencies = [ "natord", "num_cpus", "number_prefix", - "os_str_bytes", "scoped_threadpool", "term_grid", "term_size", @@ -269,12 +268,6 @@ dependencies = [ "vcpkg", ] -[[package]] -name = "os_str_bytes" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e293568965aea261bdf010db17df7030e3c9a275c415d51d6112f7cf9b7af012" - [[package]] name = "pad" version = "0.1.6" diff --git a/Cargo.toml b/Cargo.toml index 8a29b01..1817788 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,9 +41,6 @@ zoneinfo_compiled = "0.5" [target.'cfg(unix)'.dependencies] users = "0.11" -[target.'cfg(windows)'.dependencies] -os_str_bytes = "3.0" - [dependencies.git2] version = "0.13" optional = true diff --git a/src/output/table.rs b/src/output/table.rs index 1609b32..7209694 100644 --- a/src/output/table.rs +++ b/src/output/table.rs @@ -166,7 +166,6 @@ impl Column { _ => Alignment::Left, } } - #[cfg(windows)] /// Get the text that should be printed at the top, when the user elects /// to have a header row printed.