aboutsummaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authoratouchet <alextouchet@outlook.com>2020-05-31 08:55:28 -0700
committeratouchet <alextouchet@outlook.com>2020-05-31 08:55:28 -0700
commitca30ec02fcae8bc9e38c9017cf94f76a069abef1 (patch)
tree85e66efe4455a3c64f91ea78b68652675968dcf2 /components
parenta509c33abf4931ca4d59e737ac60c5adfc8599cc (diff)
downloadservo-ca30ec02fcae8bc9e38c9017cf94f76a069abef1.tar.gz
servo-ca30ec02fcae8bc9e38c9017cf94f76a069abef1.zip
More Cargo.toml updates
Diffstat (limited to 'components')
-rw-r--r--components/style/Cargo.toml34
-rw-r--r--components/style_traits/Cargo.toml6
-rw-r--r--components/url/Cargo.toml8
-rw-r--r--components/webdriver_server/Cargo.toml16
-rw-r--r--components/webgpu/Cargo.toml6
-rw-r--r--components/webrender_traits/Cargo.toml2
6 files changed, 36 insertions, 36 deletions
diff --git a/components/style/Cargo.toml b/components/style/Cargo.toml
index d7baef22a66..bf66228c8fb 100644
--- a/components/style/Cargo.toml
+++ b/components/style/Cargo.toml
@@ -36,13 +36,12 @@ bitflags = "1.0"
byteorder = "1.0"
cssparser = "0.27"
derive_more = "0.99"
-new_debug_unreachable = "1.0"
-encoding_rs = {version = "0.8", optional = true}
+encoding_rs = { version = "0.8", optional = true }
euclid = "0.20"
fallible = { path = "../fallible" }
fxhash = "0.2"
hashglobe = { path = "../hashglobe" }
-html5ever = {version = "0.25", optional = true}
+html5ever = { version = "0.25", optional = true }
indexmap = "1.0"
itertools = "0.8"
itoa = "0.4"
@@ -50,38 +49,39 @@ lazy_static = "1"
log = { version = "0.4", features = ["std"] }
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of_derive = "0.1"
-num_cpus = {version = "1.1.0", optional = true}
+new_debug_unreachable = "1.0"
+num-derive = "0.3"
num-integer = "0.1"
num-traits = "0.2"
-num-derive = "0.3"
+num_cpus = { version = "1.1.0", optional = true }
owning_ref = "0.4"
parking_lot = "0.10"
precomputed-hash = "0.1.1"
rayon = "1"
selectors = { path = "../selectors" }
-serde = {version = "1.0", optional = true, features = ["derive"]}
+serde = { version = "1.0", optional = true, features = ["derive"] }
servo_arc = { path = "../servo_arc" }
-servo_atoms = {path = "../atoms", optional = true}
-servo_config = {path = "../config", optional = true}
+servo_atoms = { path = "../atoms", optional = true }
+servo_config = { path = "../config", optional = true }
+servo_url = { path = "../url", optional = true }
smallbitvec = "2.3.0"
smallvec = "1.0"
string_cache = { version = "0.8", optional = true }
-style_derive = {path = "../style_derive"}
-style_traits = {path = "../style_traits"}
-servo_url = {path = "../url", optional = true}
-thin-slice = {version = "0.1.0", optional = true}
-to_shmem = {path = "../to_shmem"}
-to_shmem_derive = {path = "../to_shmem_derive"}
+style_derive = { path = "../style_derive" }
+style_traits = { path = "../style_traits" }
+thin-slice = { version = "0.1.0", optional = true }
time = "0.1"
+to_shmem = { path = "../to_shmem" }
+to_shmem_derive = { path = "../to_shmem_derive" }
uluru = "0.4"
unicode-bidi = "0.3"
unicode-segmentation = "1.0"
void = "1.0.2"
[build-dependencies]
+bindgen = { version = "0.53", optional = true, default-features = false }
lazy_static = "1"
log = "0.4"
-bindgen = {version = "0.53", optional = true, default-features = false}
-regex = {version = "1.1", optional = true}
+regex = { version = "1.1", optional = true }
+toml = { version = "0.5", optional = true, default-features = false }
walkdir = "2.1.4"
-toml = {version = "0.5", optional = true, default-features = false}
diff --git a/components/style_traits/Cargo.toml b/components/style_traits/Cargo.toml
index 1f3f3e9ddb1..50e93ab25e6 100644
--- a/components/style_traits/Cargo.toml
+++ b/components/style_traits/Cargo.toml
@@ -15,17 +15,17 @@ gecko = []
[dependencies]
app_units = "0.7"
-cssparser = "0.27"
bitflags = "1.0"
+cssparser = "0.27"
euclid = "0.20"
lazy_static = "1"
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of_derive = "0.1"
selectors = { path = "../selectors" }
serde = "1.0"
-webrender_api = {git = "https://github.com/servo/webrender", optional = true}
-servo_atoms = {path = "../atoms", optional = true}
servo_arc = { path = "../servo_arc" }
+servo_atoms = { path = "../atoms", optional = true }
servo_url = { path = "../url", optional = true }
to_shmem = { path = "../to_shmem" }
to_shmem_derive = { path = "../to_shmem_derive" }
+webrender_api = { git = "https://github.com/servo/webrender", optional = true }
diff --git a/components/url/Cargo.toml b/components/url/Cargo.toml
index 792fed54ac8..a8ab995ef6b 100644
--- a/components/url/Cargo.toml
+++ b/components/url/Cargo.toml
@@ -13,8 +13,8 @@ path = "lib.rs"
[dependencies]
malloc_size_of = { path = "../malloc_size_of", features = ["servo"] }
malloc_size_of_derive = "0.1"
+serde = { version = "1.0", features = ["derive"] }
+servo_rand = { path = "../rand" }
to_shmem = { path = "../to_shmem" }
-serde = {version = "1.0", features = ["derive"]}
-servo_rand = {path = "../rand"}
-url = {version = "2.0", features = ["serde"]}
-uuid = {version = "0.8", features = ["v4", "serde"]}
+url = { version = "2.0", features = ["serde"] }
+uuid = { version = "0.8", features = ["serde", "v4"] }
diff --git a/components/webdriver_server/Cargo.toml b/components/webdriver_server/Cargo.toml
index 2158954a29e..2e8ffbb4708 100644
--- a/components/webdriver_server/Cargo.toml
+++ b/components/webdriver_server/Cargo.toml
@@ -12,7 +12,7 @@ path = "lib.rs"
[dependencies]
base64 = "0.10"
-compositing = {path = "../compositing"}
+compositing = { path = "../compositing" }
cookie = "0.11"
crossbeam-channel = "0.4"
euclid = "0.20"
@@ -21,13 +21,13 @@ image = "0.23"
ipc-channel = "0.14"
keyboard-types = "0.4.3"
log = "0.4"
-msg = {path = "../msg"}
-pixels = {path = "../pixels"}
+msg = { path = "../msg" }
+pixels = { path = "../pixels" }
+script_traits = { path = "../script_traits" }
serde = "1"
serde_json = "1"
-script_traits = {path = "../script_traits"}
-servo_config = {path = "../config"}
-servo_url = {path = "../url"}
-style_traits = {path = "../style_traits"}
-uuid = {version = "0.8", features = ["v4"]}
+servo_config = { path = "../config" }
+servo_url = { path = "../url" }
+style_traits = { path = "../style_traits" }
+uuid = { version = "0.8", features = ["v4"] }
webdriver = "0.40"
diff --git a/components/webgpu/Cargo.toml b/components/webgpu/Cargo.toml
index 555dffbfabb..3c8639b3e1a 100644
--- a/components/webgpu/Cargo.toml
+++ b/components/webgpu/Cargo.toml
@@ -16,7 +16,7 @@ ipc-channel = "0.14"
log = "0.4"
malloc_size_of = { path = "../malloc_size_of" }
serde = { version = "1.0", features = ["serde_derive"] }
-servo_config = {path = "../config"}
+servo_config = { path = "../config" }
smallvec = { version = "0.6", features = ["serde"] }
-wgpu-core = { version = "0.5.0", git = "https://github.com/gfx-rs/wgpu", features = ["trace", "replay"] }
-wgpu-types = { version = "0.5.0", git = "https://github.com/gfx-rs/wgpu", features = ["trace", "replay"] }
+wgpu-core = { version = "0.5.0", git = "https://github.com/gfx-rs/wgpu", features = ["replay", "trace"] }
+wgpu-types = { version = "0.5.0", git = "https://github.com/gfx-rs/wgpu", features = ["replay", "trace"] }
diff --git a/components/webrender_traits/Cargo.toml b/components/webrender_traits/Cargo.toml
index 29d2bf8aa9f..2e59d884516 100644
--- a/components/webrender_traits/Cargo.toml
+++ b/components/webrender_traits/Cargo.toml
@@ -12,5 +12,5 @@ path = "lib.rs"
[dependencies]
euclid = "0.20"
-webrender_api = {git = "https://github.com/servo/webrender"}
+webrender_api = { git = "https://github.com/servo/webrender" }