Remove deno_core_http_bench from core/Cargo.toml (#2023)

So we don't have to have an optional tokio dependency. We build
deno_core_http_bench using GN anyway.
This commit is contained in:
Ryan Dahl 2019-03-31 11:11:36 -04:00 committed by GitHub
parent e9910d8ae5
commit 3ba4c3c2b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 10 deletions

1
Cargo.lock generated
View file

@ -188,7 +188,6 @@ dependencies = [
"libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)",
"log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)",
"tokio 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]

View file

@ -8,18 +8,9 @@ edition = "2018"
[lib]
path = "lib.rs"
[[bin]]
name = "deno_core_http_bench"
path = "http_bench.rs"
required-features = ["bin-dependencies"]
[features]
bin-dependencies = ["tokio"]
[dependencies]
futures = "0.1.25"
lazy_static = "1.3.0"
libc = "0.2.51"
log = "0.4.6"
serde_json = "1.0.39"
tokio = { version = "0.1.18", optional = true }