2020-01-02 15:13:47 -05:00
|
|
|
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-02-26 19:23:30 -05:00
|
|
|
|
|
|
|
[package]
|
2020-01-05 11:56:18 -05:00
|
|
|
name = "deno_core"
|
2020-06-02 09:48:17 -04:00
|
|
|
version = "0.47.0"
|
2019-02-26 19:23:30 -05:00
|
|
|
edition = "2018"
|
2019-03-31 17:22:02 -04:00
|
|
|
description = "A secure JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
|
2019-09-15 18:36:27 -04:00
|
|
|
authors = ["the Deno authors"]
|
2019-03-31 17:22:02 -04:00
|
|
|
license = "MIT"
|
2019-04-04 09:35:52 -04:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
2019-02-26 19:23:30 -05:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2019-11-07 17:26:49 -05:00
|
|
|
downcast-rs = "1.1.1"
|
2020-05-30 05:35:44 -04:00
|
|
|
futures = { version = "0.3.5", features = ["thread-pool", "compat"] }
|
2019-09-12 16:20:15 -04:00
|
|
|
lazy_static = "1.4.0"
|
2020-05-30 05:35:44 -04:00
|
|
|
libc = "0.2.71"
|
2019-08-02 11:58:09 -04:00
|
|
|
log = "0.4.8"
|
2020-05-06 12:50:02 -04:00
|
|
|
rusty_v8 = "0.4.2"
|
2020-05-30 05:35:44 -04:00
|
|
|
serde_json = "1.0.53"
|
2020-03-07 15:51:23 -05:00
|
|
|
url = "2.1.1"
|
2020-01-05 09:19:29 -05:00
|
|
|
|
2019-04-16 17:53:43 -04:00
|
|
|
[[example]]
|
|
|
|
name = "deno_core_http_bench"
|
|
|
|
path = "examples/http_bench.rs"
|
|
|
|
|
2020-02-06 18:34:40 -05:00
|
|
|
# These dependendencies are only used for deno_core_http_bench.
|
|
|
|
[dev-dependencies]
|
|
|
|
derive_deref = "1.1.0"
|
2020-05-30 05:35:44 -04:00
|
|
|
tokio = { version = "0.2.21", features = ["rt-core", "tcp"] }
|