This commit is contained in:
Chester Liu 2021-03-26 18:45:52 +08:00
parent 31583691d5
commit 5503e4756e
3 changed files with 0 additions and 11 deletions

7
Cargo.lock generated
View File

@ -72,7 +72,6 @@ dependencies = [
"natord", "natord",
"num_cpus", "num_cpus",
"number_prefix", "number_prefix",
"os_str_bytes",
"scoped_threadpool", "scoped_threadpool",
"term_grid", "term_grid",
"term_size", "term_size",
@ -269,12 +268,6 @@ dependencies = [
"vcpkg", "vcpkg",
] ]
[[package]]
name = "os_str_bytes"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e293568965aea261bdf010db17df7030e3c9a275c415d51d6112f7cf9b7af012"
[[package]] [[package]]
name = "pad" name = "pad"
version = "0.1.6" version = "0.1.6"

View File

@ -41,9 +41,6 @@ zoneinfo_compiled = "0.5"
[target.'cfg(unix)'.dependencies] [target.'cfg(unix)'.dependencies]
users = "0.11" users = "0.11"
[target.'cfg(windows)'.dependencies]
os_str_bytes = "3.0"
[dependencies.git2] [dependencies.git2]
version = "0.13" version = "0.13"
optional = true optional = true

View File

@ -166,7 +166,6 @@ impl Column {
_ => Alignment::Left, _ => Alignment::Left,
} }
} }
#[cfg(windows)]
/// Get the text that should be printed at the top, when the user elects /// Get the text that should be printed at the top, when the user elects
/// to have a header row printed. /// to have a header row printed.