user-agent-parser 0.2.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
[package]
name = "user-agent-parser"
version = "0.2.4"
authors = ["Magic Len <len@magiclen.org>"]
edition = "2018"
repository = "https://github.com/magiclen/user-agent-parser"
homepage = "https://magiclen.org/user-agent-parser"
keywords = ["useragent", "user-agent", "uap", "rocket", "uap-core"]
categories = ["parser-implementations"]
description= "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"
readme = "README.md"
license = "MIT"
include = ["src/**/*", "Cargo.toml", "examples/rocket.rs"]

[badges.travis-ci]
repository = "magiclen/user-agent-parser"
branch = "master"

[dependencies]
yaml-rust = "0.4"
onig = "5"
rocket = {version = "0.4.2", optional = true}

[features]
rocketly = ["rocket"]

[[example]]
name = "rocket"
required-features = ["rocketly"]