user-agent-parser 0.3.6

A parser to get the product, OS, device, cpu, and engine information from a user agent, inspired by https://github.com/faisalman/ua-parser-js and https://github.com/ua-parser/uap-core
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod cpu_regex;
mod device_regex;
mod engine_regex;
mod os_regex;
mod product_regex;

pub use cpu_regex::CPURegex;
pub use device_regex::DeviceRegex;
pub use engine_regex::EngineRegex;
pub use os_regex::OSRegex;
pub use product_regex::ProductRegex;