mirror of
https://github.com/sxyazi/yazi.git
synced 2026-07-25 08:41:05 +00:00
fix: temporarily disable the file creation time until Rust v1.78.0 becomes popular (#991)
This commit is contained in:
parent
a9cf8002d6
commit
36b3ffafc1
1 changed files with 2 additions and 1 deletions
|
|
@ -61,7 +61,8 @@ impl From<Metadata> for Cha {
|
||||||
kind: ck,
|
kind: ck,
|
||||||
len: m.len(),
|
len: m.len(),
|
||||||
accessed: m.accessed().ok(),
|
accessed: m.accessed().ok(),
|
||||||
created: m.created().ok(),
|
// TODO: remove this once https://github.com/rust-lang/rust/issues/108277 is fixed.
|
||||||
|
created: None,
|
||||||
modified: m.modified().ok(),
|
modified: m.modified().ok(),
|
||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue