bimp-persona 0.0.1

Browser persona configuration and resolved fingerprint values for Bimp.
Documentation
//! Browser persona configuration and resolved fingerprint values.
//!
//! `bimp-persona` turns a small JSON configuration into concrete browser,
//! network, JavaScript, screen, graphics, media, and automation fingerprint
//! values consumed by the Servo runtime.

mod config;
mod error;
mod fingerprint;
mod options;
mod seed;

pub use config::{DEFAULT_PERSONA_JSON, PERSONA_JSON_ENV, PersonaConfig};
pub use error::PersonaConfigError;
pub use fingerprint::*;
pub use options::*;
pub use seed::{BrowserPersonaPreset, PersonaSeed};

#[cfg(test)]
mod tests;