user-agent-parser 0.3.4

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
mod cpu;
mod device;
mod engine;
mod os;
mod product;

#[cfg(feature = "rocket")]
mod user_agent;

pub use cpu::CPU;
pub use device::Device;
pub use engine::Engine;
pub use os::OS;
pub use product::Product;

#[cfg(feature = "rocket")]
pub use user_agent::UserAgent;