1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00
denoland-deno/core/Cargo.toml

35 lines
729 B
TOML
Raw Normal View History

# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
[package]
2019-03-30 19:30:40 -04:00
name = "deno"
2019-07-31 11:37:42 -04:00
version = "0.13.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 09:35:52 -04:00
readme = "README.md"
repository = "https://github.com/denoland/deno"
[lib]
path = "lib.rs"
2019-06-04 13:35:51 -04:00
[[bin]]
name = "snapshot_creator"
path = "snapshot_creator.rs"
[dependencies]
2019-08-02 11:58:09 -04:00
futures = "0.1.28"
2019-02-27 13:24:22 -05:00
lazy_static = "1.3.0"
2019-08-02 11:58:09 -04:00
libc = "0.2.60"
log = "0.4.8"
serde_json = "1.0.40"
url = "2.0.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"