0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/core/Cargo.toml

26 lines
463 B
TOML
Raw Normal View History

# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
version = "0.0.1"
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"
libc = "0.2.49"
log = "0.4.6"
serde_json = "1.0.38"
tokio = { version = "0.1.15", optional = true }