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
9
10
11
12
13
14
15
16
17
18
//! Re-exports all backend dependencies used by the `location` module and its
//! sub-module (`browser`).
//!
//! Only available when the `backend-deps` feature is enabled together with
//! `location` (or `location-browser`).

// browser sub-module deps
#[cfg(feature = "location-browser")]
pub use tokio;

#[cfg(feature = "location-browser")]
pub use serde;

#[cfg(feature = "location-browser")]
pub use webbrowser;

#[cfg(feature = "location-browser")]
pub use rand;