2019-02-26 19:23:30 -05:00
|
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_core"
|
2019-03-28 16:10:06 -04:00
|
|
|
version = "0.3.5"
|
2019-02-26 19:23:30 -05:00
|
|
|
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"
|
2019-02-27 13:24:22 -05:00
|
|
|
lazy_static = "1.3.0"
|
2019-03-29 14:50:07 -04:00
|
|
|
libc = "0.2.51"
|
2019-02-26 19:23:30 -05:00
|
|
|
log = "0.4.6"
|
2019-03-29 14:50:07 -04:00
|
|
|
serde_json = "1.0.39"
|
|
|
|
tokio = { version = "0.1.18", optional = true }
|