diff options
author | edef <edef@unfathomable.blue> | 2022-06-13 14:39:20 +0000 |
---|---|---|
committer | edef <edef@unfathomable.blue> | 2022-06-13 14:40:30 +0000 |
commit | 5ee0ef925cbbf331052f72fb7c7a15e9f426fbb5 (patch) | |
tree | e7220d5cf10b60c129868b4f04dea609a07d2c8d /ripple/fossil | |
parent | c20beacc2b49a805caeb34c9a7dec2ffd2c8e0d3 (diff) | |
download | unf-legacy-5ee0ef925cbbf331052f72fb7c7a15e9f426fbb5.tar.zst |
ripple/fossil: use std::os::unix::prelude
We were accidentally grabbing things from the prelude module already, and this is the cleaner fix. Change-Id: I2c6b669164df11f467eae495d109e096eb267b59
Diffstat (limited to 'ripple/fossil')
-rw-r--r-- | ripple/fossil/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ripple/fossil/src/lib.rs b/ripple/fossil/src/lib.rs index b3a1c3d..85943f0 100644 --- a/ripple/fossil/src/lib.rs +++ b/ripple/fossil/src/lib.rs @@ -12,7 +12,7 @@ use { collections::BTreeMap, fs, io::{self, Read, Write}, - os::unix::{fs::PermissionsExt, prelude::FileExt}, + os::unix::prelude::*, path::Path, str, }, |