feat: Remove the hashbrown dependency for library users

This commit is contained in:
Clément Renault 2019-02-03 12:22:50 +01:00
parent 06d5a10902
commit 87f0d8cf3c
No known key found for this signature in database
GPG key ID: 0151CDAB43460DAE
6 changed files with 21 additions and 21 deletions

View file

@ -1,13 +1,13 @@
#[global_allocator]
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
use std::collections::{HashMap, HashSet};
use std::io::{self, BufRead, BufReader};
use std::path::{Path, PathBuf};
use std::error::Error;
use std::borrow::Cow;
use std::fs::File;
use hashbrown::{HashMap, HashSet};
use serde_derive::{Serialize, Deserialize};
use structopt::StructOpt;