2017-02-06 16:42:52 +00:00
|
|
|
[package]
|
|
|
|
name = "webrender_bindings"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["The Mozilla Project Developers"]
|
|
|
|
license = "MPL-2.0"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-06-07 09:29:07 +00:00
|
|
|
dirs = "4"
|
2018-02-20 14:02:40 +00:00
|
|
|
rayon = "1"
|
2019-04-24 18:29:42 +00:00
|
|
|
num_cpus = "1.7.0"
|
2020-03-16 22:24:33 +00:00
|
|
|
tracy-rs = "0.1"
|
2021-06-02 12:47:02 +00:00
|
|
|
euclid = { version = "0.22.5", features = ["serde"] }
|
2018-08-02 14:20:04 +00:00
|
|
|
app_units = "0.7"
|
2020-11-07 00:30:09 +00:00
|
|
|
gleam = "0.13.1"
|
2018-02-12 16:28:01 +00:00
|
|
|
log = "0.4"
|
2019-03-20 19:52:53 +00:00
|
|
|
nsstring = { path = "../../xpcom/rust/nsstring" }
|
2018-05-31 06:07:34 +00:00
|
|
|
bincode = "1.0"
|
2022-12-15 16:43:29 +00:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|
2018-05-31 06:07:34 +00:00
|
|
|
fxhash = "0.2.1"
|
2020-09-14 17:32:40 +00:00
|
|
|
thin-vec = { version = "0.2.1", features = ["gecko-ffi"] }
|
2020-03-13 18:18:14 +00:00
|
|
|
swgl = { path = "../wr/swgl" }
|
2020-07-27 02:55:47 +00:00
|
|
|
wr_malloc_size_of = { path = "../wr/wr_malloc_size_of" }
|
2021-06-09 11:22:55 +00:00
|
|
|
gecko-profiler = { path = "../../tools/profiler/rust-api" }
|
2022-11-22 05:35:25 +00:00
|
|
|
remove_dir_all = "0.5.3"
|
2017-02-06 16:42:52 +00:00
|
|
|
|
|
|
|
[dependencies.webrender]
|
2018-11-22 21:47:48 +00:00
|
|
|
path = "../wr/webrender"
|
2022-06-24 04:11:26 +00:00
|
|
|
version = "0.62.0"
|
2017-02-06 16:42:52 +00:00
|
|
|
default-features = false
|
2021-02-07 20:04:14 +00:00
|
|
|
features = ["capture", "serialize_program", "gecko", "sw_compositor"]
|
2017-11-07 01:20:43 +00:00
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2020-04-27 21:47:21 +00:00
|
|
|
dwrote = "0.11"
|
2019-12-09 20:21:41 +00:00
|
|
|
winapi = "0.3"
|
2017-11-07 01:20:43 +00:00
|
|
|
|
2017-11-07 01:21:06 +00:00
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
2020-07-24 22:35:25 +00:00
|
|
|
core-foundation = "0.9"
|
|
|
|
core-graphics = "0.22"
|
2017-11-20 21:33:38 +00:00
|
|
|
foreign-types = "0.3.0"
|
2020-12-23 04:02:43 +00:00
|
|
|
objc = "0.2"
|