mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Auto merge of #29361 - federicomenaquintero:selectors-shmem-feature, r=delan
Add a "shmem" feature to selectors to avoid publishing that dependency <!-- Please describe your changes on the following line: --> Hopefully as a way to help #29105, this PR adds a `shmem` feature to the selectors crate. This is so that the crate can be released with that feature off by default, as the `ToShmem` derives are only of interest to Servo, I think. All the places where servo's source code includes the selectors crate are made to turn on this feature.
This commit is contained in:
commit
a01035e6fd
13 changed files with 59 additions and 43 deletions
|
@ -88,7 +88,7 @@ regex = "1.1"
|
|||
script_layout_interface = { path = "../script_layout_interface" }
|
||||
script_plugins = { path = "../script_plugins" }
|
||||
script_traits = { path = "../script_traits" }
|
||||
selectors = { path = "../selectors" }
|
||||
selectors = { path = "../selectors", features = ["shmem"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_bytes = "0.11"
|
||||
servo-media = { git = "https://github.com/servo/media" }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue