aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@gnome.org>2023-02-14 11:58:37 -0600
committerFederico Mena Quintero <federico@gnome.org>2023-02-14 13:05:59 -0600
commit8a0810ee7477a034f65042772b5361126154d180 (patch)
treeb96ffdbeddb17069d3eaeb7ca090e3e853946280
parentc78af6a32fcb31734e6ad94fd2d123ff442622f2 (diff)
downloadservo-8a0810ee7477a034f65042772b5361126154d180.tar.gz
servo-8a0810ee7477a034f65042772b5361126154d180.zip
*/Cargo.toml: use the shmem feature for the dependency on the selectors cratre
-rw-r--r--components/layout_thread/Cargo.toml2
-rw-r--r--components/layout_thread_2020/Cargo.toml2
-rw-r--r--components/malloc_size_of/Cargo.toml2
-rw-r--r--components/script/Cargo.toml2
-rw-r--r--components/script_layout_interface/Cargo.toml2
-rw-r--r--components/style/Cargo.toml2
-rw-r--r--components/style_traits/Cargo.toml2
-rw-r--r--tests/unit/style/Cargo.toml2
8 files changed, 8 insertions, 8 deletions
diff --git a/components/layout_thread/Cargo.toml b/components/layout_thread/Cargo.toml
index 73939ab4872..238029cf5ad 100644
--- a/components/layout_thread/Cargo.toml
+++ b/components/layout_thread/Cargo.toml
@@ -39,7 +39,7 @@ rayon = "1"
script = { path = "../script" }
script_layout_interface = { path = "../script_layout_interface" }
script_traits = { path = "../script_traits" }
-selectors = { path = "../selectors" }
+selectors = { path = "../selectors", features = ["shmem"] }
serde_json = "1.0"
servo_allocator = { path = "../allocator" }
servo_arc = { path = "../servo_arc" }
diff --git a/components/layout_thread_2020/Cargo.toml b/components/layout_thread_2020/Cargo.toml
index 0ed1585c0a0..c8fc87aceb6 100644
--- a/components/layout_thread_2020/Cargo.toml
+++ b/components/layout_thread_2020/Cargo.toml
@@ -37,7 +37,7 @@ range = { path = "../range" }
script = { path = "../script" }
script_layout_interface = { path = "../script_layout_interface" }
script_traits = { path = "../script_traits" }
-selectors = { path = "../selectors" }
+selectors = { path = "../selectors", features = ["shmem"] }
servo_allocator = { path = "../allocator" }
servo_arc = { path = "../servo_arc" }
servo_atoms = { path = "../atoms" }
diff --git a/components/malloc_size_of/Cargo.toml b/components/malloc_size_of/Cargo.toml
index d931d15a01c..cedfb2f5200 100644
--- a/components/malloc_size_of/Cargo.toml
+++ b/components/malloc_size_of/Cargo.toml
@@ -37,7 +37,7 @@ hashglobe = { path = "../hashglobe" }
http = { version = "0.2", optional = true }
hyper_serde = { version = "0.13", optional = true }
keyboard-types = { version = "0.6", optional = true }
-selectors = { path = "../selectors" }
+selectors = { path = "../selectors", features = ["shmem"] }
serde = { version = "1.0.27", optional = true }
serde_bytes = { version = "0.11", optional = true }
servo_arc = { path = "../servo_arc" }
diff --git a/components/script/Cargo.toml b/components/script/Cargo.toml
index 1b6eece505b..d85cbc32d16 100644
--- a/components/script/Cargo.toml
+++ b/components/script/Cargo.toml
@@ -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" }
diff --git a/components/script_layout_interface/Cargo.toml b/components/script_layout_interface/Cargo.toml
index 815d79d652c..8ebf48b5d4c 100644
--- a/components/script_layout_interface/Cargo.toml
+++ b/components/script_layout_interface/Cargo.toml
@@ -30,7 +30,7 @@ parking_lot = "0.11"
profile_traits = { path = "../profile_traits" }
range = { path = "../range" }
script_traits = { path = "../script_traits" }
-selectors = { path = "../selectors" }
+selectors = { path = "../selectors", features = ["shmem"] }
servo_arc = { path = "../servo_arc" }
servo_atoms = { path = "../atoms" }
servo_url = { path = "../url" }
diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml
index 1997f37efa3..a88ccf0fd88 100644
--- a/components/style/Cargo.toml
+++ b/components/style/Cargo.toml
@@ -59,7 +59,7 @@ owning_ref = "0.4"
parking_lot = "0.11"
precomputed-hash = "0.1.1"
rayon = "1"
-selectors = { path = "../selectors" }
+selectors = { path = "../selectors", features = ["shmem"] }
serde = { version = "1.0", optional = true, features = ["derive"] }
servo_arc = { path = "../servo_arc" }
servo_atoms = { path = "../atoms", optional = true }
diff --git a/components/style_traits/Cargo.toml b/components/style_traits/Cargo.toml
index 88c0aab1757..041c4305f77 100644
--- a/components/style_traits/Cargo.toml
+++ b/components/style_traits/Cargo.toml
@@ -21,7 +21,7 @@ euclid = "0.22"
lazy_static = "1"
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of_derive = "0.1"
-selectors = { path = "../selectors" }
+selectors = { path = "../selectors", features = ["shmem"] }
serde = "1.0"
servo_arc = { path = "../servo_arc" }
servo_atoms = { path = "../atoms", optional = true }
diff --git a/tests/unit/style/Cargo.toml b/tests/unit/style/Cargo.toml
index 826aa46a355..2fa49b6691b 100644
--- a/tests/unit/style/Cargo.toml
+++ b/tests/unit/style/Cargo.toml
@@ -16,7 +16,7 @@ euclid = "0.22"
html5ever = "0.26"
rayon = "1"
serde_json = "1.0"
-selectors = {path = "../../../components/selectors"}
+selectors = {path = "../../../components/selectors", features = ["shmem"] }
servo_arc = {path = "../../../components/servo_arc"}
servo_atoms = {path = "../../../components/atoms"}
servo_config = {path = "../../../components/config"}