1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
#[cfg(feature = "diagnostics")] #[path = "integration/diagnostics.rs"] mod diagnostics; #[cfg(feature = "operations")] #[path = "integration/copy.rs"] mod copy; #[cfg(feature = "operations")] #[path = "integration/move_op.rs"] mod move_op; #[cfg(feature = "analyze")] #[path = "integration/analyze.rs"] mod analyze; #[cfg(feature = "compress")] #[path = "integration/compress.rs"] mod compress; #[cfg(feature = "sync")] #[path = "integration/sync.rs"] mod sync; #[cfg(feature = "watch")] #[path = "integration/watch.rs"] mod watch; #[cfg(all(feature = "operations", feature = "permissions", unix))] #[path = "integration/permissions.rs"] mod permissions;