We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 355d560 commit ae2c97cCopy full SHA for ae2c97c
Cargo.toml
@@ -23,7 +23,7 @@ selectors = "0.22.0"
23
smallvec = "1.9.0"
24
tendril = "0.4.3"
25
indexmap = { version = "1.9.1", optional = true }
26
-fnv = "1.0.7"
+ahash = "0.8"
27
28
[dependencies.getopts]
29
version = "0.2.21"
src/node.rs
@@ -1,6 +1,6 @@
1
//! HTML nodes.
2
3
-use fnv::{FnvHashMap as HashMap, FnvHashSet as HashSet};
+use ahash::{HashMap, HashSet};
4
use std::collections::{hash_map, hash_set};
5
use std::fmt;
6
use std::ops::Deref;
0 commit comments