1[package]
2name = "yeslogic-fontconfig-sys"
3version = "6.0.0"
4edition = "2021"
5rust-version = "1.77"
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]
27dlib = "0.5.0"
28# This can't be optional because build.rs can't conditionally enable an
29# optional dependency:
30#
31# > Note that this does not affect Cargo's dependency resolution. This cannot
32# > be used to enable an optional dependency, or enable other Cargo features.
33#
34# - https://doc.rust-lang.org/cargo/reference/build-scripts.html#rustc-cfg
35once_cell = "1.9.0"
36
37[features]
38dlopen = []
39
40[build-dependencies]
41pkg-config = "0.3"
42