Skip to content

Commit ae2c97c

Browse files
committed
Replace fnv with ahash
1 parent 355d560 commit ae2c97c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ selectors = "0.22.0"
2323
smallvec = "1.9.0"
2424
tendril = "0.4.3"
2525
indexmap = { version = "1.9.1", optional = true }
26-
fnv = "1.0.7"
26+
ahash = "0.8"
2727

2828
[dependencies.getopts]
2929
version = "0.2.21"

src/node.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! HTML nodes.
22
3-
use fnv::{FnvHashMap as HashMap, FnvHashSet as HashSet};
3+
use ahash::{HashMap, HashSet};
44
use std::collections::{hash_map, hash_set};
55
use std::fmt;
66
use std::ops::Deref;

0 commit comments

Comments
 (0)