style: Add SharedMemoryBuilder type and ToShmem trait.

Differential Revision: https://phabricator.services.mozilla.com/D17187
This commit is contained in:
Cameron McCormack 2019-03-30 00:15:59 +00:00 committed by Emilio Cobos Álvarez
parent f889b303da
commit f581d2afb2
4 changed files with 193 additions and 0 deletions

View file

@ -68,6 +68,7 @@ style_derive = {path = "../style_derive"}
style_traits = {path = "../style_traits"}
servo_url = {path = "../url", optional = true}
thin-slice = "0.1.0"
to_shmem = {path = "../to_shmem"}
time = "0.1"
uluru = "0.3"
unicode-bidi = "0.3"

View file

@ -99,6 +99,7 @@ extern crate style_traits;
#[cfg(feature = "gecko")]
extern crate thin_slice;
extern crate time;
extern crate to_shmem;
extern crate uluru;
extern crate unicode_bidi;
#[allow(unused_extern_crates)]