mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01: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
883 B
TOML
46 lines
883 B
TOML
[package]
|
|
name = "net"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
|
|
[lib]
|
|
name = "net"
|
|
path = "lib.rs"
|
|
|
|
[dependencies.net_traits]
|
|
path = "../net_traits"
|
|
|
|
[dependencies.util]
|
|
path = "../util"
|
|
|
|
[dependencies.devtools_traits]
|
|
path = "../devtools_traits"
|
|
|
|
[dependencies.brotli]
|
|
git = "https://github.com/ende76/brotli-rs"
|
|
|
|
[dependencies.plugins]
|
|
path = "../plugins"
|
|
|
|
[dependencies.msg]
|
|
path = "../msg"
|
|
|
|
[dependencies.ipc-channel]
|
|
git = "https://github.com/servo/ipc-channel"
|
|
|
|
[dependencies.webrender_traits]
|
|
git = "https://github.com/glennw/webrender_traits"
|
|
|
|
[dependencies]
|
|
hyper = { version = "0.7", features = [ "serde-serialization" ] }
|
|
log = "0.3"
|
|
time = "0.1.17"
|
|
openssl = "0.7.0"
|
|
rustc-serialize = "0.3"
|
|
cookie = "0.2"
|
|
mime_guess = "1.1.1"
|
|
flate2 = "0.2.0"
|
|
uuid = "0.1.16"
|
|
url = {version = "0.5.5", features = ["heap_size"]}
|
|
websocket = "0.14.0"
|
|
immeta = "0.3.1"
|