2021-01-10 21:59:07 -05:00
|
|
|
# Copyright 2018-2021 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"
|
2021-03-09 14:12:13 -05:00
|
|
|
version = "0.80.2"
|
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]
|
2021-02-15 11:32:08 -05:00
|
|
|
align-data = "0.1"
|
2021-01-12 02:50:02 -05:00
|
|
|
anyhow = "1.0.38"
|
2021-01-26 11:00:40 -05:00
|
|
|
futures = "0.3.12"
|
2021-01-12 02:50:02 -05:00
|
|
|
indexmap = "1.6.1"
|
2019-09-12 16:20:15 -04:00
|
|
|
lazy_static = "1.4.0"
|
2021-02-09 09:34:34 -05:00
|
|
|
libc = "0.2.86"
|
|
|
|
log = "0.4.14"
|
|
|
|
pin-project = "1.0.5"
|
2021-03-10 15:16:43 -05:00
|
|
|
rusty_v8 = "0.21.0"
|
2021-02-09 09:34:34 -05:00
|
|
|
serde = { version = "1.0.123", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.62", features = ["preserve_order"] }
|
2021-01-12 02:50:02 -05:00
|
|
|
smallvec = "1.6.1"
|
|
|
|
url = { version = "2.2.0", features = ["serde"] }
|
2020-01-05 09:19:29 -05:00
|
|
|
|
2019-04-16 17:53:43 -04:00
|
|
|
[[example]]
|
2020-08-21 11:14:47 -04:00
|
|
|
name = "http_bench_bin_ops"
|
|
|
|
path = "examples/http_bench_bin_ops.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "http_bench_json_ops"
|
|
|
|
path = "examples/http_bench_json_ops.rs"
|
2019-04-16 17:53:43 -04:00
|
|
|
|
2020-12-10 14:45:45 -05:00
|
|
|
# These dependencies are only used for the 'http_bench_*_ops' examples.
|
2020-02-06 18:34:40 -05:00
|
|
|
[dev-dependencies]
|
2021-02-09 09:34:34 -05:00
|
|
|
tokio = { version = "1.2.0", features = ["full"] }
|