1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-19 20:26:20 -05:00
denoland-deno/core/Cargo.toml

34 lines
792 B
TOML
Raw Normal View History

2020-01-02 15:13:47 -05:00
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
2020-01-09 13:04:51 -05:00
version = "0.29.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 14:26:49 -08:00
downcast-rs = "1.1.1"
futures = { version = "0.3.1", features = [ "thread-pool", "compat" ] }
2019-09-12 22:20:15 +02:00
lazy_static = "1.4.0"
libc = "0.2.66"
2019-08-02 17:58:09 +02:00
log = "0.4.8"
serde_json = "1.0.44"
url = "2.1.0"
2020-01-16 23:25:57 +01:00
rusty_v8 = "0.1.0"
2020-01-05 09:19:29 -05:00
[[example]]
name = "deno_core_http_bench"
path = "examples/http_bench.rs"
# tokio is only used for deno_core_http_bench
[dev_dependencies]
tokio = { version = "0.2", features = ["full"] }
num_cpus = "1.11.1"