toolkit-zero 5.11.0

A feature-selective Rust utility crate — a modular collection of opt-in utilities spanning encryption, HTTP networking, geolocation, and build-time fingerprinting. Enable only the features your project requires.
1
2
3
4
5
6
7
8
//! Re-exports all backend dependencies used by the `serialization` module.
//!
//! Only available when the `backend-deps` feature is enabled together with
//! the `serialization` feature.

pub use bincode;
pub use base64;
pub use zeroize;