deno/core/Cargo.toml

37 lines
879 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-08-22 18:47:25 +00:00
version = "0.16.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"
# NOTE: The ninja build of snapshot_creator gets clobbered by 'cargo build' if
# the following is added. This breaks incremental 'cargo build'.
# [[bin]]
# name = "snapshot_creator"
# path = "snapshot_creator.rs"
2019-06-04 17:35:51 +00:00
[dependencies]
2019-08-02 15:58:09 +00:00
futures = "0.1.28"
2019-02-27 18:24:22 +00:00
lazy_static = "1.3.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"
2019-08-22 20:33:55 +00:00
url = "2.1.0"
[[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"