pyo3 0.29.0

Bindings to Python interpreter
Documentation
1
2
3
4
5
6
7
8
9
//! This module is to support platform compatiblity with `no_std` environments.
#![allow(unused_imports)]

#[cfg(feature = "hashbrown")]
pub use hashbrown::{HashMap, HashSet};

// TODO conditionally import these based on "std" feature
#[cfg(not(feature = "hashbrown"))]
pub use std::collections::{HashMap, HashSet};