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!
46 lines
994 B
TOML
46 lines
994 B
TOML
[package]
|
|
name = "canvas_traits"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
[lib]
|
|
name = "canvas_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.gfx_traits]
|
|
path = "../gfx_traits"
|
|
|
|
[dependencies.azure]
|
|
git = "https://github.com/servo/rust-azure"
|
|
features = ["plugins"]
|
|
|
|
[dependencies.layers]
|
|
git = "https://github.com/servo/rust-layers"
|
|
features = ["plugins"]
|
|
|
|
[dependencies.offscreen_gl_context]
|
|
git = "https://github.com/ecoal95/rust-offscreen-rendering-context"
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/servo/ipc-channel"
|
|
|
|
[dependencies.serde]
|
|
version = "0.6"
|
|
features = [ "nightly" ]
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.webrender_traits]
|
|
git = "https://github.com/glennw/webrender_traits"
|
|
|
|
[dependencies]
|
|
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"
|
|
serde_macros = "0.6"
|
|
|