bimp_persona/lib.rs
1//! Browser persona configuration and resolved fingerprint values.
2//!
3//! `bimp-persona` turns a small JSON configuration into concrete browser,
4//! network, JavaScript, screen, graphics, media, and automation fingerprint
5//! values consumed by the Servo runtime.
6
7mod config;
8mod error;
9mod fingerprint;
10mod options;
11mod seed;
12
13pub use config::{DEFAULT_PERSONA_JSON, PERSONA_JSON_ENV, PersonaConfig};
14pub use error::PersonaConfigError;
15pub use fingerprint::*;
16pub use options::*;
17pub use seed::{BrowserPersonaPreset, PersonaSeed};
18
19#[cfg(test)]
20mod tests;