2019-02-26 19:23:30 -05:00
|
|
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
[package]
|
2019-03-30 19:30:40 -04:00
|
|
|
name = "deno"
|
2019-05-20 14:23:48 -04:00
|
|
|
version = "0.6.0"
|
2019-02-26 19:23:30 -05:00
|
|
|
edition = "2018"
|
2019-03-31 17:22:02 -04:00
|
|
|
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
|
|
|
authors = ["The deno authors <bertbelder@nodejs.org>"]
|
|
|
|
license = "MIT"
|
2019-04-04 09:35:52 -04:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2019-02-26 19:23:30 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-05-10 23:03:03 -04:00
|
|
|
futures = "0.1.27"
|
2019-02-27 13:24:22 -05:00
|
|
|
lazy_static = "1.3.0"
|
2019-05-10 23:03:03 -04:00
|
|
|
libc = "0.2.54"
|
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"
|
2019-04-16 17:53:43 -04:00
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "deno_core_http_bench"
|
|
|
|
path = "examples/http_bench.rs"
|
|
|
|
|
|
|
|
# tokio is only used for deno_core_http_bench
|
|
|
|
[dev_dependencies]
|
|
|
|
tokio = "0.1.18"
|