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-05-31 13:39:24 -04:00
|
|
|
version = "0.88.1"
|
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-05-31 13:39:24 -04:00
|
|
|
serde_v8 = { version = "0.4.1", path = "../serde_v8" }
|
2021-04-13 12:22:48 -04:00
|
|
|
|
2021-04-08 12:46:14 -04:00
|
|
|
anyhow = "1.0.40"
|
2021-05-17 08:44:40 -04:00
|
|
|
futures = "0.3.15"
|
2021-04-08 12:46:14 -04:00
|
|
|
indexmap = "1.6.2"
|
2019-09-12 16:20:15 -04:00
|
|
|
lazy_static = "1.4.0"
|
2021-04-08 12:46:14 -04:00
|
|
|
libc = "0.2.93"
|
2021-02-09 09:34:34 -05:00
|
|
|
log = "0.4.14"
|
2021-04-08 12:46:14 -04:00
|
|
|
pin-project = "1.0.6"
|
2021-05-10 08:46:50 -04:00
|
|
|
rusty_v8 = "0.22.2"
|
2021-04-08 12:46:14 -04:00
|
|
|
serde = { version = "1.0.125", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0.64", features = ["preserve_order"] }
|
|
|
|
url = { version = "2.2.1", features = ["serde"] }
|
2020-01-05 09:19:29 -05:00
|
|
|
|
2020-08-21 11:14:47 -04:00
|
|
|
[[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-05-29 07:18:24 -04:00
|
|
|
tokio = { version = "1.6.1", features = ["full"] }
|