xee-testrunner 0.1.6

Conformance testing for Xee's XPath and XSLT implementations
Documentation
1
2
3
4
5
6
7
8
use fxhash::FxBuildHasher;
use indexmap::{IndexMap, IndexSet};

// we use indexmap so we get stable serialization in insta tests,
// The run-time impact should be small as we're not really
// intense users
pub(crate) type FxIndexMap<K, V> = IndexMap<K, V, FxBuildHasher>;
pub(crate) type FxIndexSet<T> = IndexSet<T, FxBuildHasher>;