mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
WebRender is an experimental GPU accelerated rendering backend for Servo. The WebRender backend can be specified by running Servo with the -w option (otherwise the default rendering backend will be used). WebRender has many bugs, and missing features - but it is usable to browse most websites - please report any WebRender specific rendering bugs you encounter!
36 lines
841 B
TOML
36 lines
841 B
TOML
[package]
|
|
name = "msg"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
[lib]
|
|
name = "msg"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.layers]
|
|
git = "https://github.com/servo/rust-layers"
|
|
features = ["plugins"]
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/servo/ipc-channel"
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.webrender_traits]
|
|
git = "https://github.com/glennw/webrender_traits"
|
|
|
|
[dependencies]
|
|
bitflags = "0.3"
|
|
cssparser = {version = "0.5.3", features = ["heap_size", "serde-serialization"]}
|
|
euclid = {version = "0.6.2", features = ["plugins"]}
|
|
heapsize = "0.3.0"
|
|
heapsize_plugin = "0.1.2"
|
|
hyper = { version = "0.7", features = [ "serde-serialization" ] }
|
|
rustc-serialize = "0.3.4"
|
|
serde = "0.6"
|
|
serde_macros = "0.6"
|
|
url = {version = "0.5.5", features = ["heap_size"]}
|