1
2
3
4
5
//! Simple hash-based string table for use when interning and such.  fxhash is used for speed
//! and simplicity, although don't rely on this implementation if you're looking for cryptographic
//! soundness.
pub mod btree_string_table;
pub mod common;