2016-06-09 23:39:40 -04:00
|
|
|
[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]
|
2019-08-17 22:46:29 -04:00
|
|
|
euclid = "0.20"
|
2017-05-25 13:57:42 -04:00
|
|
|
libc = "0.2"
|
2019-10-23 15:17:09 -04:00
|
|
|
foreign-types = "0.5"
|
2018-01-26 15:20:42 -05:00
|
|
|
log = "0.4"
|
2016-06-09 23:39:40 -04:00
|
|
|
|
2018-10-16 13:02:52 -04:00
|
|
|
[target.'cfg(not(any(target_os = "macos", windows)))'.dependencies]
|
2018-09-30 16:44:14 -04:00
|
|
|
servo-fontconfig = "0.4.0"
|
2019-10-23 15:17:09 -04:00
|
|
|
freetype-rs = "0.23"
|
2016-06-09 23:39:40 -04:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2018-09-19 17:55:35 -04:00
|
|
|
core-foundation = "0.6"
|
|
|
|
core-text = "13"
|
|
|
|
core-graphics = "0.17"
|
|
|
|
core-foundation-sys = "0.6"
|
2018-10-16 13:02:52 -04:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-04-23 13:41:21 -04:00
|
|
|
dwrote = { version = "0.9.0" }
|