diff options
author | Aleksey Kladov <[email protected]> | 2019-07-04 21:05:17 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-07-04 21:09:09 +0100 |
commit | 1834bae5b86c54ed9dece26e82436919d59e6cb7 (patch) | |
tree | 92c8b984e874b67fa1831613464bbe356c1af3dd /crates/test_utils | |
parent | 2b2cd829b0f95aef338227deb05ec7503dae9b6c (diff) |
allow rustfmt to reorder imports
This wasn't a right decision in the first place, the feature flag was
broken in the last rustfmt release, and syntax highlighting of imports
is more important anyway
Diffstat (limited to 'crates/test_utils')
-rw-r--r-- | crates/test_utils/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/test_utils/src/lib.rs b/crates/test_utils/src/lib.rs index 8bb3b3937..ea99ac062 100644 --- a/crates/test_utils/src/lib.rs +++ b/crates/test_utils/src/lib.rs | |||
@@ -3,11 +3,11 @@ pub mod marks; | |||
3 | 3 | ||
4 | use std::{ | 4 | use std::{ |
5 | fs, | 5 | fs, |
6 | path::{Path, PathBuf} | 6 | path::{Path, PathBuf}, |
7 | }; | 7 | }; |
8 | 8 | ||
9 | use text_unit::{TextRange, TextUnit}; | ||
10 | use serde_json::Value; | 9 | use serde_json::Value; |
10 | use text_unit::{TextRange, TextUnit}; | ||
11 | 11 | ||
12 | pub use difference::Changeset as __Changeset; | 12 | pub use difference::Changeset as __Changeset; |
13 | 13 | ||