2021-01-11 12:13:41 -05:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2020-12-13 13:45:53 -05:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "deno_runtime"
|
2021-01-13 14:00:13 -05:00
|
|
|
version = "0.6.0"
|
2020-12-13 13:45:53 -05:00
|
|
|
license = "MIT"
|
|
|
|
authors = ["the Deno authors"]
|
|
|
|
edition = "2018"
|
|
|
|
description = "Provides the deno runtime library"
|
|
|
|
repository = "https://github.com/denoland/deno"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "deno_runtime"
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
|
|
[[example]]
|
|
|
|
name = "hello_runtime"
|
|
|
|
path = "examples/hello_runtime.rs"
|
|
|
|
|
|
|
|
[build-dependencies]
|
2021-01-13 14:00:13 -05:00
|
|
|
deno_core = { path = "../core", version = "0.76.0" }
|
|
|
|
deno_crypto = { path = "../op_crates/crypto", version = "0.10.0" }
|
|
|
|
deno_fetch = { path = "../op_crates/fetch", version = "0.19.0" }
|
|
|
|
deno_web = { path = "../op_crates/web", version = "0.27.0" }
|
|
|
|
deno_websocket = { path = "../op_crates/websocket", version = "0.2.0" }
|
2020-12-13 13:45:53 -05:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
|
|
winres = "0.1.11"
|
|
|
|
winapi = "0.3.9"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-01-13 14:00:13 -05:00
|
|
|
deno_core = { path = "../core", version = "0.76.0" }
|
|
|
|
deno_crypto = { path = "../op_crates/crypto", version = "0.10.0" }
|
|
|
|
deno_fetch = { path = "../op_crates/fetch", version = "0.19.0" }
|
|
|
|
deno_web = { path = "../op_crates/web", version = "0.27.0" }
|
|
|
|
deno_websocket = { path = "../op_crates/websocket", version = "0.2.0" }
|
2020-12-13 13:45:53 -05:00
|
|
|
|
|
|
|
atty = "0.2.14"
|
|
|
|
dlopen = "0.1.8"
|
2021-01-12 02:50:02 -05:00
|
|
|
encoding_rs = "0.8.26"
|
|
|
|
env_logger = "0.8.2"
|
|
|
|
filetime = "0.2.13"
|
|
|
|
http = "0.2.3"
|
|
|
|
hyper = { version = "0.14.2", features = ["server"] }
|
|
|
|
indexmap = "1.6.1"
|
2020-12-13 13:45:53 -05:00
|
|
|
lazy_static = "1.4.0"
|
2021-01-12 02:50:02 -05:00
|
|
|
libc = "0.2.82"
|
|
|
|
log = "0.4.13"
|
|
|
|
notify = "5.0.0-pre.4"
|
2020-12-13 13:45:53 -05:00
|
|
|
percent-encoding = "2.1.0"
|
2021-01-12 02:50:02 -05:00
|
|
|
regex = "1.4.3"
|
2020-12-13 13:45:53 -05:00
|
|
|
ring = "0.16.19"
|
2020-12-19 10:20:36 -05:00
|
|
|
rustyline = { version = "7.1.0", default-features = false }
|
2020-12-13 13:45:53 -05:00
|
|
|
rustyline-derive = "0.4.0"
|
|
|
|
serde = { version = "1.0.116", features = ["derive"] }
|
|
|
|
shell-escape = "0.1.5"
|
|
|
|
sys-info = "0.7.0"
|
2021-01-12 02:50:02 -05:00
|
|
|
termcolor = "1.1.2"
|
|
|
|
tokio = { version = "1.0.1", features = ["full"] }
|
|
|
|
tokio-rustls = "0.22.0"
|
|
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
|
|
|
webpki = "0.21.4"
|
|
|
|
webpki-roots = "0.21.0"
|
2020-12-13 13:45:53 -05:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
fwdansi = "1.1.0"
|
2021-01-12 02:50:02 -05:00
|
|
|
winapi = { version = "0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
|
2020-12-13 13:45:53 -05:00
|
|
|
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
2021-01-12 02:50:02 -05:00
|
|
|
nix = "0.19.1"
|
2020-12-13 13:45:53 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
# Used in benchmark
|
|
|
|
test_util = { path = "../test_util" }
|