Auto merge of #6648 - boghison:tidytoml, r=jdm

Make tidy check for "*" in toml files

This checks every .toml file for an asterisk and prints an error if found.

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6648)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2015-07-20 14:43:05 -06:00
commit 58e9bc6583
24 changed files with 401 additions and 189 deletions

View file

@ -28,7 +28,7 @@ git = "https://github.com/ecoal95/rust-offscreen-rendering-context"
features = ["texture_surface"]
[dependencies]
log = "*"
log = "0.3"
cssparser = "0.3.1"
num = "0.1.24"
gleam = "0.1"

View file

@ -57,16 +57,16 @@ git = "https://github.com/aweinstock314/rust-clipboard"
git = "https://github.com/pcwalton/ipc-channel"
[dependencies]
log = "*"
log = "0.3"
num = "0.1.24"
url = "0.2.36"
time = "0.1.17"
libc = "*"
libc = "0.1"
gleam = "0.1"
euclid = "0.1"
[target.x86_64-apple-darwin.dependencies]
core-graphics = "*"
core-graphics = "0.1"
[target.x86_64-apple-darwin.dependencies.core-text]
git = "https://github.com/servo/core-text-rs"

View file

@ -21,7 +21,7 @@ path = "../msg"
path = "../util"
[dependencies]
log = "*"
time = "*"
log = "0.3"
time = "0.1"
rustc-serialize = "0.3"
url = "0.2"

View file

@ -18,7 +18,7 @@ path = "../msg"
path = "../util"
[dependencies]
time = "*"
time = "0.1"
rustc-serialize = "0.3"
url = "0.2"
bitflags = "*"
bitflags = "0.3"

View file

@ -45,24 +45,24 @@ git = "https://github.com/servo/skia"
path = "../script_traits"
[dependencies]
log = "*"
log = "0.3"
fnv = "1.0"
url = "0.2.36"
time = "0.1.12"
bitflags = "*"
bitflags = "0.3"
rustc-serialize = "0.3"
libc = "*"
rand = "*"
libc = "0.1"
rand = "0.3"
harfbuzz = "0.1"
smallvec = "0.1"
string_cache = "0.1"
euclid = "0.1"
serde = "*"
serde_macros = "*"
serde = "0.4"
serde_macros = "0.4"
[target.x86_64-apple-darwin.dependencies]
core-foundation = "*"
core-graphics = "*"
core-foundation = "0.1"
core-graphics = "0.1"
[target.i686-unknown-linux-gnu.dependencies.fontconfig]
git = "https://github.com/servo/rust-fontconfig"

View file

@ -59,18 +59,18 @@ git = "https://github.com/tomaka/clock_ticks"
git = "https://github.com/pcwalton/ipc-channel"
[dependencies]
log = "*"
log = "0.3"
encoding = "0.2"
fnv = "1.0"
url = "0.2.36"
bitflags = "*"
bitflags = "0.3"
rustc-serialize = "0.3"
libc = "*"
libc = "0.1"
cssparser = "0.3.1"
smallvec = "0.1"
string_cache = "0.1"
string_cache_plugin = "0.1"
euclid = "0.1"
serde = "*"
serde_macros = "*"
serde = "0.4"
serde_macros = "0.4"

View file

@ -31,6 +31,6 @@ git = "https://github.com/pcwalton/ipc-channel"
[dependencies]
url = "0.2.36"
euclid = "0.1"
serde = "*"
serde_macros = "*"
serde = "0.4"
serde_macros = "0.4"

View file

@ -35,14 +35,14 @@ features = [ "serde_serialization" ]
git = "https://github.com/pcwalton/ipc-channel"
[dependencies]
bitflags = "*"
bitflags = "0.3"
rustc-serialize = "0.3.4"
euclid = "0.1"
serde = "*"
serde_macros = "*"
serde = "0.4"
serde_macros = "0.4"
[target.x86_64-apple-darwin.dependencies]
core-foundation = "*"
core-foundation = "0.1"
[target.x86_64-apple-darwin.dependencies.io-surface]
git = "https://github.com/servo/io-surface-rs"

View file

@ -25,12 +25,12 @@ version = "0.6"
features = [ "serde-serialization" ]
[dependencies]
log = "*"
log = "0.3"
url = "0.2.36"
time = "0.1.17"
openssl="0.6.1"
rustc-serialize = "0.3"
cookie="*"
cookie = "0.1"
regex = "0.1.14"
regex_macros = "0.1.8"
flate2 = "0.2.0"

View file

@ -25,9 +25,9 @@ version = "0.6"
features = [ "serde-serialization" ]
[dependencies]
log = "*"
log = "0.3"
url = "0.2.36"
euclid = "0.1"
serde = "*"
serde_macros = "*"
serde = "0.4"
serde_macros = "0.4"

View file

@ -14,8 +14,8 @@ path = "../profile_traits"
path = "../util"
[dependencies]
log = "*"
libc = "*"
log = "0.3"
libc = "0.1"
regex = "0.1.14"
time = "0.1.12"

View file

@ -66,13 +66,13 @@ version = "0.6"
features = [ "serde-serialization" ]
[dependencies]
log = "*"
log = "0.3"
encoding = "0.2"
fnv = "1.0"
time = "0.1.12"
bitflags = "*"
rustc-serialize = "*"
libc = "*"
bitflags = "0.3"
rustc-serialize = "0.3"
libc = "0.1"
cssparser = "0.3.1"
unicase = "0.1"
num = "0.1.24"
@ -85,4 +85,4 @@ string_cache_plugin = "0.1"
euclid = "0.1"
tendril = "0.1.1"
rand = "0.3"
serde = "*"
serde = "0.4"

View file

@ -27,8 +27,8 @@ git = "https://github.com/pcwalton/ipc-channel"
[dependencies]
url = "0.2.36"
libc = "*"
libc = "0.1"
euclid = "0.1"
serde = "*"
serde_macros = "*"
serde = "0.4"
serde_macros = "0.4"

View file

@ -101,8 +101,8 @@ path = "../../support/android-rs-glue/glue"
optional = true
[dependencies]
env_logger = "*"
env_logger = "0.3"
url = "0.2.36"
time = "0.1.12"
bitflags = "*"
libc = "*"
bitflags = "0.3"
libc = "0.1"

View file

@ -20,13 +20,13 @@ path = "../util"
git = "https://github.com/servo/rust-selectors"
[dependencies]
log = "*"
log = "0.3"
encoding = "0.2"
fnv = "1.0"
rustc-serialize = "0.3"
matches = "0.1"
url = "0.2.36"
bitflags = "*"
bitflags = "0.3"
cssparser = "0.3.2"
num = "0.1.24"
lazy_static = "0.1.10"
@ -34,6 +34,6 @@ smallvec = "0.1"
string_cache = "0.1"
string_cache_plugin = "0.1"
euclid = "0.1"
serde = "*"
serde_macros = "*"
serde = "0.4"
serde_macros = "0.4"

View file

@ -22,10 +22,10 @@ path = "../plugins"
git = "https://github.com/servo/rust-azure"
[dependencies]
log = "*"
bitflags = "*"
libc = "*"
rand = "*"
log = "0.3"
bitflags = "0.3"
libc = "0.1"
rand = "0.3"
rustc-serialize = "0.3"
smallvec = "0.1"
num_cpus = "0.2.2"
@ -33,6 +33,6 @@ cssparser = "0.3.1"
num = "0.1.24"
url = "0.2.36"
euclid = "0.1"
serde = "*"
serde_macros = "*"
serde = "0.4"
serde_macros = "0.4"

View file

@ -24,7 +24,7 @@ features = [ "serde-serialization" ]
git = "https://github.com/pcwalton/ipc-channel"
[dependencies]
log = "*"
log = "0.3"
rustc-serialize = "0.3.4"
url = "0.2.36"
uuid = "*"
uuid = "0.1"