Cargo.toml 665 字节
Newer Older
B
Bert Belder 已提交
1 2 3
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.

[package]
4
name = "deno"
R
v0.17.0  
Ryan Dahl 已提交
5
version = "0.17.0"
B
Bert Belder 已提交
6
edition = "2018"
7 8 9
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["The deno authors <bertbelder@nodejs.org>"]
license = "MIT"
R
Ryan Dahl 已提交
10 11
readme = "README.md"
repository = "https://github.com/denoland/deno"
B
Bert Belder 已提交
12 13 14 15 16

[lib]
path = "lib.rs"

[dependencies]
B
Bert Belder 已提交
17
futures = "0.1.28"
B
Bert Belder 已提交
18
lazy_static = "1.3.0"
B
Bert Belder 已提交
19
libc = "0.2.62"
B
Bert Belder 已提交
20 21
log = "0.4.8"
serde_json = "1.0.40"
22
url = "1.7.2"
23 24 25 26 27 28 29 30

[[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"