mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
29 lines
650 B
TOML
29 lines
650 B
TOML
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno"
|
|
version = "0.7.0"
|
|
edition = "2018"
|
|
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
|
authors = ["The deno authors <bertbelder@nodejs.org>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
futures = "0.1.27"
|
|
lazy_static = "1.3.0"
|
|
libc = "0.2.55"
|
|
log = "0.4.6"
|
|
serde_json = "1.0.39"
|
|
|
|
[[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"
|