1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/runtime/Cargo.toml

99 lines
3.3 KiB
TOML
Raw Normal View History

# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_runtime"
version = "0.69.0"
authors = ["the Deno authors"]
edition = "2021"
license = "MIT"
repository = "https://github.com/denoland/deno"
description = "Provides the deno runtime library"
[features]
# "fake" feature that allows to generate docs on docs.rs
docsrs = []
[lib]
name = "deno_runtime"
path = "lib.rs"
[[example]]
name = "hello_runtime"
path = "examples/hello_runtime.rs"
[build-dependencies]
deno_broadcast_channel = { version = "0.55.0", path = "../ext/broadcast_channel" }
deno_console = { version = "0.61.0", path = "../ext/console" }
deno_core = { version = "0.143.0", path = "../core" }
deno_crypto = { version = "0.75.0", path = "../ext/crypto" }
deno_fetch = { version = "0.84.0", path = "../ext/fetch" }
deno_ffi = { version = "0.48.0", path = "../ext/ffi" }
deno_http = { version = "0.55.0", path = "../ext/http" }
deno_net = { version = "0.53.0", path = "../ext/net" }
deno_tls = { version = "0.48.0", path = "../ext/tls" }
deno_url = { version = "0.61.0", path = "../ext/url" }
deno_web = { version = "0.92.0", path = "../ext/web" }
deno_webgpu = { version = "0.62.0", path = "../ext/webgpu" }
deno_webidl = { version = "0.61.0", path = "../ext/webidl" }
deno_websocket = { version = "0.66.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.56.0", path = "../ext/webstorage" }
lzzzz = '1.0'
[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"
[dependencies]
deno_broadcast_channel = { version = "0.55.0", path = "../ext/broadcast_channel" }
deno_console = { version = "0.61.0", path = "../ext/console" }
deno_core = { version = "0.143.0", path = "../core" }
deno_crypto = { version = "0.75.0", path = "../ext/crypto" }
deno_fetch = { version = "0.84.0", path = "../ext/fetch" }
deno_ffi = { version = "0.48.0", path = "../ext/ffi" }
deno_http = { version = "0.55.0", path = "../ext/http" }
deno_net = { version = "0.53.0", path = "../ext/net" }
deno_tls = { version = "0.48.0", path = "../ext/tls" }
deno_url = { version = "0.61.0", path = "../ext/url" }
deno_web = { version = "0.92.0", path = "../ext/web" }
deno_webgpu = { version = "0.62.0", path = "../ext/webgpu" }
deno_webidl = { version = "0.61.0", path = "../ext/webidl" }
deno_websocket = { version = "0.66.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.56.0", path = "../ext/webstorage" }
atty = "0.2.14"
dlopen = "0.1.8"
2022-05-05 06:41:59 -04:00
encoding_rs = "0.8.31"
filetime = "0.2.16"
fs3 = "0.5.0"
2022-05-05 06:41:59 -04:00
http = "0.2.6"
hyper = { version = "0.14.18", features = ["server", "stream", "http1", "http2", "runtime"] }
libc = "0.2.126"
2022-05-05 06:41:59 -04:00
log = "0.4.16"
lzzzz = '1.0'
2022-03-04 17:08:04 -05:00
netif = "0.1.3"
notify = "=5.0.0-pre.15"
once_cell = "1.10.0"
2022-03-08 11:30:17 -05:00
regex = "1.5.5"
2021-02-09 09:34:34 -05:00
ring = "0.16.20"
2022-05-05 06:41:59 -04:00
serde = { version = "1.0.136", features = ["derive"] }
signal-hook-registry = "1.4.0"
2022-05-05 06:41:59 -04:00
sys-info = "0.9.1"
termcolor = "1.1.3"
tokio = { version = "1.19", features = ["full"] }
2022-05-05 06:41:59 -04:00
uuid = { version = "1.0.0", features = ["v4"] }
[target.'cfg(windows)'.dependencies]
fwdansi = "1.1.0"
winapi = { version = "0.3.9", features = ["commapi", "knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
[target.'cfg(unix)'.dependencies]
2022-02-17 09:01:26 -05:00
nix = "=0.23.0"
[dev-dependencies]
# Used in benchmark
test_util = { path = "../test_util" }
[package.metadata.docs.rs]
features = ["docsrs"]