summary refs log tree commit diff
diff options
context:
space:
mode:
authoredef <edef@unfathomable.blue>2022-06-13 14:39:20 +0000
committeredef <edef@unfathomable.blue>2022-06-13 14:40:30 +0000
commit5ee0ef925cbbf331052f72fb7c7a15e9f426fbb5 (patch)
treee7220d5cf10b60c129868b4f04dea609a07d2c8d
parentc20beacc2b49a805caeb34c9a7dec2ffd2c8e0d3 (diff)
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
-rw-r--r--ripple/fossil/src/lib.rs2
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,
 	},