selectors/*.rs - Put all the to_shmem attributes behind a "shmem" feature

This commit is contained in:
Federico Mena Quintero 2023-02-14 11:39:37 -06:00
parent 9dae402dc5
commit c78af6a32f
4 changed files with 48 additions and 33 deletions

View file

@ -18,7 +18,9 @@ extern crate phf;
extern crate precomputed_hash;
extern crate servo_arc;
extern crate smallvec;
#[cfg(feature = "shmem")]
extern crate to_shmem;
#[cfg(feature = "shmem")]
#[macro_use]
extern crate to_shmem_derive;