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

32 lines
714 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-11-14 22:22:50 -05:00
version = "0.24.0"
edition = "2018"
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
authors = ["the Deno authors"]
license = "MIT"
2019-04-04 09:35:52 -04:00
readme = "README.md"
repository = "https://github.com/denoland/deno"
[lib]
path = "lib.rs"
[dependencies]
2019-11-07 17:26:49 -05:00
downcast-rs = "1.1.1"
2019-11-16 19:17:47 -05:00
futures = { version = "0.3", features = [ "thread-pool", "compat" ] }
2019-09-12 16:20:15 -04:00
lazy_static = "1.4.0"
2019-11-07 17:26:49 -05:00
libc = "0.2.65"
2019-08-02 11:58:09 -04:00
log = "0.4.8"
2019-11-07 17:26:49 -05:00
serde_json = "1.0.41"
url = "1.7.2"
[[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"