| 1 | [package] |
| 2 | name = "yeslogic-fontconfig-sys" |
| 3 | version = "6.0.0" |
| 4 | edition = "2021" |
| 5 | rust-version = "1.77" |
| 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 | dlib = "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 |
| 35 | once_cell = "1.9.0" |
| 36 | |
| 37 | [features] |
| 38 | dlopen = [] |
| 39 | |
| 40 | [build-dependencies] |
| 41 | pkg-config = "0.3" |
| 42 | |