mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
*/Cargo.toml: use the shmem feature for the dependency on the selectors cratre
This commit is contained in:
parent
c78af6a32f
commit
8a0810ee74
8 changed files with 8 additions and 8 deletions
|
@ -39,7 +39,7 @@ rayon = "1"
|
||||||
script = { path = "../script" }
|
script = { path = "../script" }
|
||||||
script_layout_interface = { path = "../script_layout_interface" }
|
script_layout_interface = { path = "../script_layout_interface" }
|
||||||
script_traits = { path = "../script_traits" }
|
script_traits = { path = "../script_traits" }
|
||||||
selectors = { path = "../selectors" }
|
selectors = { path = "../selectors", features = ["shmem"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
servo_allocator = { path = "../allocator" }
|
servo_allocator = { path = "../allocator" }
|
||||||
servo_arc = { path = "../servo_arc" }
|
servo_arc = { path = "../servo_arc" }
|
||||||
|
|
|
@ -37,7 +37,7 @@ range = { path = "../range" }
|
||||||
script = { path = "../script" }
|
script = { path = "../script" }
|
||||||
script_layout_interface = { path = "../script_layout_interface" }
|
script_layout_interface = { path = "../script_layout_interface" }
|
||||||
script_traits = { path = "../script_traits" }
|
script_traits = { path = "../script_traits" }
|
||||||
selectors = { path = "../selectors" }
|
selectors = { path = "../selectors", features = ["shmem"] }
|
||||||
servo_allocator = { path = "../allocator" }
|
servo_allocator = { path = "../allocator" }
|
||||||
servo_arc = { path = "../servo_arc" }
|
servo_arc = { path = "../servo_arc" }
|
||||||
servo_atoms = { path = "../atoms" }
|
servo_atoms = { path = "../atoms" }
|
||||||
|
|
|
@ -37,7 +37,7 @@ hashglobe = { path = "../hashglobe" }
|
||||||
http = { version = "0.2", optional = true }
|
http = { version = "0.2", optional = true }
|
||||||
hyper_serde = { version = "0.13", optional = true }
|
hyper_serde = { version = "0.13", optional = true }
|
||||||
keyboard-types = { version = "0.6", 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 = { version = "1.0.27", optional = true }
|
||||||
serde_bytes = { version = "0.11", optional = true }
|
serde_bytes = { version = "0.11", optional = true }
|
||||||
servo_arc = { path = "../servo_arc" }
|
servo_arc = { path = "../servo_arc" }
|
||||||
|
|
|
@ -88,7 +88,7 @@ regex = "1.1"
|
||||||
script_layout_interface = { path = "../script_layout_interface" }
|
script_layout_interface = { path = "../script_layout_interface" }
|
||||||
script_plugins = { path = "../script_plugins" }
|
script_plugins = { path = "../script_plugins" }
|
||||||
script_traits = { path = "../script_traits" }
|
script_traits = { path = "../script_traits" }
|
||||||
selectors = { path = "../selectors" }
|
selectors = { path = "../selectors", features = ["shmem"] }
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_bytes = "0.11"
|
serde_bytes = "0.11"
|
||||||
servo-media = { git = "https://github.com/servo/media" }
|
servo-media = { git = "https://github.com/servo/media" }
|
||||||
|
|
|
@ -30,7 +30,7 @@ parking_lot = "0.11"
|
||||||
profile_traits = { path = "../profile_traits" }
|
profile_traits = { path = "../profile_traits" }
|
||||||
range = { path = "../range" }
|
range = { path = "../range" }
|
||||||
script_traits = { path = "../script_traits" }
|
script_traits = { path = "../script_traits" }
|
||||||
selectors = { path = "../selectors" }
|
selectors = { path = "../selectors", features = ["shmem"] }
|
||||||
servo_arc = { path = "../servo_arc" }
|
servo_arc = { path = "../servo_arc" }
|
||||||
servo_atoms = { path = "../atoms" }
|
servo_atoms = { path = "../atoms" }
|
||||||
servo_url = { path = "../url" }
|
servo_url = { path = "../url" }
|
||||||
|
|
|
@ -59,7 +59,7 @@ owning_ref = "0.4"
|
||||||
parking_lot = "0.11"
|
parking_lot = "0.11"
|
||||||
precomputed-hash = "0.1.1"
|
precomputed-hash = "0.1.1"
|
||||||
rayon = "1"
|
rayon = "1"
|
||||||
selectors = { path = "../selectors" }
|
selectors = { path = "../selectors", features = ["shmem"] }
|
||||||
serde = { version = "1.0", optional = true, features = ["derive"] }
|
serde = { version = "1.0", optional = true, features = ["derive"] }
|
||||||
servo_arc = { path = "../servo_arc" }
|
servo_arc = { path = "../servo_arc" }
|
||||||
servo_atoms = { path = "../atoms", optional = true }
|
servo_atoms = { path = "../atoms", optional = true }
|
||||||
|
|
|
@ -21,7 +21,7 @@ euclid = "0.22"
|
||||||
lazy_static = "1"
|
lazy_static = "1"
|
||||||
malloc_size_of = { path = "../malloc_size_of" }
|
malloc_size_of = { path = "../malloc_size_of" }
|
||||||
malloc_size_of_derive = "0.1"
|
malloc_size_of_derive = "0.1"
|
||||||
selectors = { path = "../selectors" }
|
selectors = { path = "../selectors", features = ["shmem"] }
|
||||||
serde = "1.0"
|
serde = "1.0"
|
||||||
servo_arc = { path = "../servo_arc" }
|
servo_arc = { path = "../servo_arc" }
|
||||||
servo_atoms = { path = "../atoms", optional = true }
|
servo_atoms = { path = "../atoms", optional = true }
|
||||||
|
|
|
@ -16,7 +16,7 @@ euclid = "0.22"
|
||||||
html5ever = "0.26"
|
html5ever = "0.26"
|
||||||
rayon = "1"
|
rayon = "1"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
selectors = {path = "../../../components/selectors"}
|
selectors = {path = "../../../components/selectors", features = ["shmem"] }
|
||||||
servo_arc = {path = "../../../components/servo_arc"}
|
servo_arc = {path = "../../../components/servo_arc"}
|
||||||
servo_atoms = {path = "../../../components/atoms"}
|
servo_atoms = {path = "../../../components/atoms"}
|
||||||
servo_config = {path = "../../../components/config"}
|
servo_config = {path = "../../../components/config"}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue