1 | [package] |
2 | name = "yeslogic-fontconfig-sys" |
3 | version = "3.2.0" |
4 | edition = "2018" |
5 | rust-version = "1.46" |
6 | authors = [ |
7 | "Austin Bonander <austin.bonander@gmail.com>" , |
8 | "The Servo Project Developers" , |
9 | "YesLogic Pty. Ltd. <info@yeslogic.com>" |
10 | ] |
11 | license = "MIT" |
12 | |
13 | description = "Raw bindings to Fontconfig without a vendored C library" |
14 | keywords = ["font" , "bindings" , "fontconfig" , "sys" ] |
15 | categories = ["text-processing" ] |
16 | |
17 | homepage = "https://github.com/yeslogic/fontconfig-rs" |
18 | documentation = "https://docs.rs/crate/yeslogic-fontconfig-sys" |
19 | repository = "https://github.com/yeslogic/fontconfig-rs" |
20 | |
21 | links = "fontconfig" |
22 | |
23 | [lib] |
24 | name = "fontconfig_sys" |
25 | |
26 | [dependencies] |
27 | const-cstr = "0.3" |
28 | dlib = "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 |
36 | once_cell = "1.9.0" |
37 | |
38 | [features] |
39 | dlopen = [] |
40 | |
41 | [build-dependencies] |
42 | pkg-config = "0.3" |
43 | |