hashconsing
is a hash consing library in Rust.
It is a rather straightforward implementation of a paper by FiliĆ¢tre and Conchon.
For more details see the documentation.
Add this to your Cargo.toml
:
toml
[dependencies]
hashconsing = "0.3.0"
and this to your crate root:
```rust
extern crate hashconsing; ```