-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (30 loc) · 765 Bytes
/
Cargo.toml
File metadata and controls
36 lines (30 loc) · 765 Bytes
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
[package]
name = "fontconfig-parser"
version = "0.5.8"
edition = "2018"
license = "MIT"
documentation = "https://docs.rs/fontconfig-parser"
description = "fontconfig file parser in pure Rust"
repository = "https://github.com/Riey/fontconfig-parser"
homepage = "https://github.com/Riey/fontconfig-parser"
readme = "README.md"
categories = ["parser-implementations"]
keywords = ["fontconfig"]
[features]
serialize = ["serde"]
[dependencies]
log = { version = "0.4", optional = true }
roxmltree = "0.20.0"
serde = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
criterion = "0.5"
glob = "0.3"
k9 = "0.12"
serde_json = "1"
[[bench]]
name = "parse_test_conf"
harness = false
[profile.bench]
lto = "thin"
[profile.release]
lto = "thin"