cargo fix --edition-idioms

This commit is contained in:
Simon Sapin 2018-11-01 21:43:04 +01:00
parent b1fd6237d1
commit 2012be4a8b
203 changed files with 665 additions and 1281 deletions

View file

@ -1,3 +1,5 @@
cargo-features = ["rename-dependency"]
[package]
name = "profile"
version = "0.0.1"
@ -11,7 +13,7 @@ name = "profile"
path = "lib.rs"
[features]
unstable = ["jemalloc-sys"]
unstable = ["servo_allocator"]
[dependencies]
profile_traits = {path = "../profile_traits"}
@ -22,7 +24,7 @@ log = "0.4"
serde = "1.0"
serde_json = "1.0"
servo_config = {path = "../config"}
time = "0.1.12"
time_crate = {package = "time", version = "0.1.12"}
tokio = "0.1"
[target.'cfg(target_os = "macos")'.dependencies]
@ -33,4 +35,4 @@ regex = "1.0"
[target.'cfg(not(target_os = "windows"))'.dependencies]
libc = "0.2"
jemalloc-sys = {version = "0.1.3", optional = true}
servo_allocator = {path = "../allocator", optional = true}