Fix unused import warnings

Summary: See title

Reviewed By: fanzeyi

Differential Revision: D31800345

fbshipit-source-id: 6fdd2be14240d3a01376742d097edbdd9ade97d8
This commit is contained in:
Grace Ku 2021-10-20 14:59:56 -07:00 committed by Facebook GitHub Bot
parent ca53588325
commit d28a9f4ccd
2 changed files with 1 additions and 4 deletions

View File

@ -14,7 +14,6 @@
use anyhow::*;
use serde::*;
use sha2::{Digest, Sha256};
use std::ffi::{CStr, CString};
use std::os::unix::fs::MetadataExt;
use std::os::unix::process::CommandExt;
use std::path::{Path, PathBuf};

View File

@ -10,13 +10,11 @@ use crate::treecontentstore::TreeContentStore;
use crate::utils::key_from_path_node_slice;
use anyhow::Result;
use edenapi::{Builder as EdenApiBuilder, EdenApi};
use log::warn;
use manifest::{List, Manifest};
use manifest_tree::TreeManifest;
use progress::null::NullProgressFactory;
use revisionstore::{
ContentStore, ContentStoreBuilder, EdenApiFileStore, EdenApiTreeStore, HgIdDataStore,
LocalStore, MemcacheStore, RemoteDataStore, StoreKey, StoreResult,
LocalStore, RemoteDataStore, StoreKey, StoreResult,
};
use std::path::Path;
use std::sync::Arc;