Cargo.toml 663 字节
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.24.0  
Ryan Dahl 已提交
5
version = "0.24.0"
B
Bert Belder 已提交
6
edition = "2018"
7
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
8
authors = ["the Deno authors"]
9
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
downcast-rs = "1.1.1"
B
Bert Belder 已提交
18 19
futures = "0.1.29"
lazy_static = "1.4.0"
B
Bert Belder 已提交
20
libc = "0.2.65"
B
Bert Belder 已提交
21
log = "0.4.8"
B
Bert Belder 已提交
22
serde_json = "1.0.41"
23
url = "1.7.2"
24 25 26 27 28 29 30 31

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