deno/core/Cargo.toml

31 lines
665 B
TOML
Raw Normal View History

# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
[package]
2019-03-30 23:30:40 +00:00
name = "deno"
2019-09-13 16:59:47 +00:00
version = "0.18.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["The deno authors <bertbelder@nodejs.org>"]
license = "MIT"
2019-04-04 13:35:52 +00:00
readme = "README.md"
repository = "https://github.com/denoland/deno"
[lib]
path = "lib.rs"
[dependencies]
2019-09-12 20:20:15 +00:00
futures = "0.1.29"
lazy_static = "1.4.0"
2019-08-22 20:33:55 +00:00
libc = "0.2.62"
2019-08-02 15:58:09 +00:00
log = "0.4.8"
serde_json = "1.0.40"
url = "1.7.2"
[[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"