Run rustfmt

I ignored some odd formatting it introduced relating to putting braces on newlines in if-let blocks. This might be a bug, but I didn't find any way to turn that off.
This commit is contained in:
Lucien Greathouse
2017-12-13 12:05:11 -08:00
parent 59b2401c2c
commit f89d491f29
3 changed files with 13 additions and 5 deletions

View File

@@ -31,7 +31,11 @@ fn test_path_to_route() {
assert_eq!(path_to_route(root, value), result);
}
t(Path::new("/a/b/c"), Path::new("/a/b/c/d"), Some(vec!["d".to_string()]));
t(
Path::new("/a/b/c"),
Path::new("/a/b/c/d"),
Some(vec!["d".to_string()]),
);
t(Path::new("/a/b"), Path::new("a"), None);
}
@@ -42,7 +46,11 @@ fn test_path_to_route_windows() {
assert_eq!(path_to_route(root, value), result);
}
t(Path::new("C:\\foo"), Path::new("C:\\foo\\bar\\baz"), Some(vec!["bar".to_string(), "baz".to_string()]));
t(
Path::new("C:\\foo"),
Path::new("C:\\foo\\bar\\baz"),
Some(vec!["bar".to_string(), "baz".to_string()]),
);
}
/// Turns the path into an absolute one, using the current working directory if

View File

@@ -4,9 +4,9 @@ use std::time::Duration;
use notify::{DebouncedEvent, RecommendedWatcher, RecursiveMode, Watcher};
use vfs::Vfs;
use pathext::path_to_route;
use core::Config;
use pathext::path_to_route;
use vfs::Vfs;
pub struct VfsWatcher {
vfs: Arc<Mutex<Vfs>>,

View File

@@ -8,7 +8,7 @@ use serde_json;
use core::Config;
use project::Project;
use vfs::{Vfs, VfsItem, VfsChange};
use vfs::{Vfs, VfsChange, VfsItem};
static MAX_BODY_SIZE: usize = 25 * 1024 * 1025; // 25 MiB