2017-02-06 19:42:52 +03:00
|
|
|
[package]
|
|
|
|
name = "webrender"
|
2017-03-23 00:26:52 +03:00
|
|
|
version = "0.25.0"
|
2017-02-06 19:42:52 +03:00
|
|
|
authors = ["Glenn Watson <gw@intuitionlibrary.com>"]
|
|
|
|
license = "MPL-2.0"
|
|
|
|
repository = "https://github.com/servo/webrender"
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[features]
|
2017-03-07 02:46:30 +03:00
|
|
|
default = ["freetype-lib"]
|
2017-02-06 19:42:52 +03:00
|
|
|
freetype-lib = ["freetype/servo-freetype-sys"]
|
2017-02-14 21:34:14 +03:00
|
|
|
profiler = ["thread_profiler/thread_profiler"]
|
2017-02-06 19:42:52 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2017-02-23 07:07:59 +03:00
|
|
|
app_units = "0.4"
|
|
|
|
bincode = "1.0.0-alpha2"
|
2017-02-06 19:42:52 +03:00
|
|
|
bit-set = "0.4"
|
2017-02-14 21:34:14 +03:00
|
|
|
byteorder = "1.0"
|
2017-02-23 07:07:59 +03:00
|
|
|
euclid = "0.11"
|
2017-03-07 02:46:30 +03:00
|
|
|
fnv = "1.0"
|
2017-03-20 20:41:23 +03:00
|
|
|
gleam = "0.4.1"
|
2017-02-06 19:42:52 +03:00
|
|
|
lazy_static = "0.2"
|
|
|
|
log = "0.3"
|
|
|
|
num-traits = "0.1.32"
|
2017-03-20 20:41:23 +03:00
|
|
|
offscreen_gl_context = {version = "0.8.0", features = ["serde", "osmesa"]}
|
2017-02-06 19:42:52 +03:00
|
|
|
time = "0.1"
|
|
|
|
threadpool = "1.3.2"
|
2017-03-07 02:46:30 +03:00
|
|
|
webrender_traits = {path = "../webrender_traits"}
|
2017-02-06 19:42:52 +03:00
|
|
|
bitflags = "0.7"
|
2017-02-14 21:34:14 +03:00
|
|
|
gamma-lut = "0.1"
|
|
|
|
thread_profiler = "0.1.1"
|
2017-02-06 19:42:52 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
angle = {git = "https://github.com/servo/angle", branch = "servo"}
|
|
|
|
|
|
|
|
[target.'cfg(any(target_os = "android", all(unix, not(target_os = "macos"))))'.dependencies]
|
|
|
|
freetype = { version = "0.2", default-features = false }
|
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2017-03-07 02:46:30 +03:00
|
|
|
dwrote = "0.3"
|
2017-02-06 19:42:52 +03:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2017-02-23 07:07:59 +03:00
|
|
|
core-graphics = "0.7.0"
|
|
|
|
core-text = "4.0"
|