diff options
Diffstat (limited to 'cli/main.rs')
-rw-r--r-- | cli/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/main.rs b/cli/main.rs index 7da0e2df3..cf819ce5f 100644 --- a/cli/main.rs +++ b/cli/main.rs @@ -1,6 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. #![deny(warnings)] +extern crate dissimilar; #[macro_use] extern crate lazy_static; #[macro_use] @@ -25,6 +26,7 @@ mod checksum; pub mod colors; pub mod deno_dir; pub mod diagnostics; +mod diff; mod disk_cache; mod doc; mod file_fetcher; |