mirror of
https://github.com/servo/servo.git
synced 2025-07-16 11:53:39 +01:00
Auto merge of #15656 - servo:pub-crate, r=emilio
Add more public crates to libservo. Fixes #15640. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15656) <!-- Reviewable:end -->
This commit is contained in:
commit
a1e4c547f0
3 changed files with 7 additions and 1 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1496,8 +1496,10 @@ dependencies = [
|
|||
"script_layout_interface 0.0.1",
|
||||
"script_traits 0.0.1",
|
||||
"servo_config 0.0.1",
|
||||
"servo_geometry 0.0.1",
|
||||
"servo_url 0.0.1",
|
||||
"style 0.0.1",
|
||||
"style_traits 0.0.1",
|
||||
"webdriver_server 0.0.1",
|
||||
"webrender 0.17.0 (git+https://github.com/servo/webrender)",
|
||||
"webrender_traits 0.16.0 (git+https://github.com/servo/webrender)",
|
||||
|
|
|
@ -47,8 +47,10 @@ script = {path = "../script"}
|
|||
script_layout_interface = {path = "../script_layout_interface"}
|
||||
script_traits = {path = "../script_traits"}
|
||||
servo_config = {path = "../config"}
|
||||
servo_geometry = {path = "../geometry"}
|
||||
servo_url = {path = "../url"}
|
||||
style = {path = "../style", features = ["servo"]}
|
||||
style_traits = {path = "../style_traits", features = ["servo"]}
|
||||
webvr = {path = "../webvr"}
|
||||
webvr_traits = {path = "../webvr_traits"}
|
||||
webdriver_server = {path = "../webdriver_server", optional = true}
|
||||
|
|
|
@ -45,8 +45,11 @@ pub extern crate script;
|
|||
pub extern crate script_traits;
|
||||
pub extern crate script_layout_interface;
|
||||
pub extern crate servo_config;
|
||||
pub extern crate servo_geometry;
|
||||
pub extern crate servo_url;
|
||||
pub extern crate style;
|
||||
pub extern crate style_traits;
|
||||
pub extern crate webrender_traits;
|
||||
pub extern crate webvr;
|
||||
pub extern crate webvr_traits;
|
||||
|
||||
|
@ -54,7 +57,6 @@ pub extern crate webvr_traits;
|
|||
extern crate webdriver_server;
|
||||
|
||||
extern crate webrender;
|
||||
extern crate webrender_traits;
|
||||
|
||||
#[cfg(feature = "webdriver")]
|
||||
fn webdriver(port: u16, constellation: Sender<ConstellationMsg>) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue