Skip to content

Commit

Permalink
Revert back to the standard library hashmap
Browse files Browse the repository at this point in the history
Related to #34
  • Loading branch information
dguo committed May 9, 2019
1 parent 7aacbc5 commit 687dc6d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ This project attempts to adhere to [Semantic Versioning](http://semver.org).

## [Unreleased]

### Changed

- Revert back to the standard library hashmap because it will use hashbrown very
soon

## [0.9.1] - (2019-04-08)

### Changed
Expand Down
1 change: 0 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ documentation = "https://docs.rs/strsim/"
exclude = ["/.travis.yml", "/dev"]

[dependencies]
hashbrown = "0.1.8"
ndarray = "0.12.1"

[badges]
Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,15 @@
//! This library implements string similarity metrics.

extern crate hashbrown;
extern crate ndarray;

use std::char;
use std::cmp::{max, min};
use std::collections::HashMap;
use std::error::Error;
use std::fmt::{self, Display, Formatter};
use std::hash::Hash;
use std::str::Chars;

use hashbrown::HashMap;
use ndarray::Array2;

#[derive(Debug, PartialEq)]
Expand Down

0 comments on commit 687dc6d

Please sign in to comment.