2016-06-09 20:39:40 -07:00
|
|
|
[package]
|
|
|
|
name = "font"
|
|
|
|
version = "0.1.0"
|
2020-01-11 02:23:13 +01:00
|
|
|
authors = ["Christian Duerr <contact@christianduerr.com>", "Joe Wilm <joe@jwilm.com>"]
|
2016-06-09 20:39:40 -07:00
|
|
|
description = "Font rendering using the best available solution per platform"
|
|
|
|
license = "Apache-2.0"
|
2020-01-15 22:14:07 +00:00
|
|
|
edition = "2018"
|
2016-06-09 20:39:40 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2019-08-18 04:46:29 +02:00
|
|
|
euclid = "0.20"
|
2017-05-25 10:57:42 -07:00
|
|
|
libc = "0.2"
|
2019-10-23 22:17:09 +03:00
|
|
|
foreign-types = "0.5"
|
2018-01-26 23:20:42 +03:00
|
|
|
log = "0.4"
|
2016-06-09 20:39:40 -07:00
|
|
|
|
2018-10-17 06:02:52 +13: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 22:17:09 +03:00
|
|
|
freetype-rs = "0.23"
|
2016-06-09 20:39:40 -07: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-17 06:02:52 +13:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
2019-04-23 10:41:21 -07:00
|
|
|
dwrote = { version = "0.9.0" }
|