-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
37 lines (32 loc) · 974 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "woothee"
version = "0.13.0"
authors = ["hhatto <[email protected]>"]
license = "Apache-2.0"
repository = "https://github.com/woothee/woothee-rust"
keywords = ["useragent", "ua"]
readme = "README.md"
description = "user-agent strings parser"
documentation = "https://docs.rs/woothee"
build = "build.rs"
edition = "2018"
[dependencies]
regex = "1"
lazy_static = "1.3.0"
[dev-dependencies]
uap-rust = "0.0.4"
uaparser = "0.4"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
[features]
default = []
generate = ["yaml-rust", "tera", "tempfile", "glob", "serde", "serde_json", "serde_derive"]
[build-dependencies]
tera = { version = "1", optional = true }
yaml-rust = { version = "0.4", optional = true }
tempfile = { version = "3", optional = true }
glob = { version = "0.3.0", optional = true }
serde = { version = "1.0", optional = true }
serde_json = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }