summaryrefslogtreecommitdiffstats
path: root/font/Cargo.toml
blob: a0c524b86b9e8376951dc3c55de4fce869d62fd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "font"
version = "0.1.0"
authors = ["Joe Wilm <joe@jwilm.com>"]
description = "Font rendering using the best available solution per platform"
license = "Apache-2.0"

[dependencies]
euclid = "0.17"
libc = "0.2"
foreign-types = "0.3"
log = "0.4"

[target.'cfg(not(target_os = "macos"))'.dependencies]
servo-fontconfig = "0.4.0"
freetype-rs = "0.19"

[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.6"
core-text = "13"
core-graphics = "0.17"
core-foundation-sys = "0.6"