summaryrefslogtreecommitdiffstats
path: root/src/output
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-03-26 00:37:12 +0000
committerBen S <ogham@bsago.me>2015-03-26 00:37:12 +0000
commit2ffa64cff6f00666d1ff47c146bff6938dfdcf5c (patch)
tree6375802b82bdbfeb315ceb78cca162ba68280cf1 /src/output
parent697e1e66e4d61e537a3f39cb77a188800fbd6f77 (diff)
Move all optional features into features module
This module provides feature-specific implementations, and also dummy implementations for when they aren't supported by the system or OS. Doing it this way limits all the #[cfg(feature)] annotations, as we can now just include the module or not.
Diffstat (limited to 'src/output')
-rw-r--r--src/output/details.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/details.rs b/src/output/details.rs
index 1414e61..8e73e69 100644
--- a/src/output/details.rs
+++ b/src/output/details.rs
@@ -1,5 +1,5 @@
use column::{Alignment, Column, Cell};
-use xattr::Attribute;
+use feature::Attribute;
use dir::Dir;
use file::{File, GREY};
use options::{Columns, FileFilter, RecurseOptions};