panicgraph 0.2.1

Reports which functions can panic, why, and through what call path.
Documentation
1
2
3
4
5
6
7
//! Shared container aliases.

/// Hash map used throughout the crate.
pub type Map<K, V> = hashbrown::HashMap<K, V>;

/// Hash set used throughout the crate.
pub type Set<T> = hashbrown::HashSet<T>;