1[package]
2name = "yeslogic-fontconfig-sys"
3version = "3.2.0"
4edition = "2018"
5rust-version = "1.46"
6authors = [
7 "Austin Bonander <austin.bonander@gmail.com>",
8 "The Servo Project Developers",
9 "YesLogic Pty. Ltd. <info@yeslogic.com>"
10]
11license = "MIT"
12
13description = "Raw bindings to Fontconfig without a vendored C library"
14keywords = ["font", "bindings", "fontconfig", "sys"]
15categories = ["text-processing"]
16
17homepage = "https://github.com/yeslogic/fontconfig-rs"
18documentation = "https://docs.rs/crate/yeslogic-fontconfig-sys"
19repository = "https://github.com/yeslogic/fontconfig-rs"
20
21links = "fontconfig"
22
23[lib]
24name = "fontconfig_sys"
25
26[dependencies]
27const-cstr = "0.3"
28dlib = "0.5.0"
29# This can't be optional because build.rs can't conditionally enable an
30# optional dependency:
31#
32# > Note that this does not affect Cargo's dependency resolution. This cannot
33# > be used to enable an optional dependency, or enable other Cargo features.
34#
35# - https://doc.rust-lang.org/cargo/reference/build-scripts.html#rustc-cfg
36once_cell = "1.9.0"
37
38[features]
39dlopen = []
40
41[build-dependencies]
42pkg-config = "0.3"
43