mirror of
https://github.com/denoland/deno.git
synced 2024-11-02 09:34:19 -04:00
02c74fb709
This commit adds "DENO_TLS_CA_STORE" env variable to support optionally loading certificates from the users local certificate store. This will allow them to successfully connect via tls with corporate and self signed certs provided they have them installed in their keystore. It also allows them to deal with revoked certs by simply updating their keystore without having to upgrade Deno. Currently supported values are "mozilla", "system" or empty value.
90 lines
3.5 KiB
TOML
90 lines
3.5 KiB
TOML
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "deno_runtime"
|
|
version = "0.21.0"
|
|
authors = ["the Deno authors"]
|
|
edition = "2018"
|
|
license = "MIT"
|
|
repository = "https://github.com/denoland/deno"
|
|
description = "Provides the deno runtime library"
|
|
|
|
[lib]
|
|
name = "deno_runtime"
|
|
path = "lib.rs"
|
|
|
|
[[example]]
|
|
name = "hello_runtime"
|
|
path = "examples/hello_runtime.rs"
|
|
|
|
[build-dependencies]
|
|
deno_broadcast_channel = { version = "0.7.0", path = "../extensions/broadcast_channel" }
|
|
deno_console = { version = "0.13.0", path = "../extensions/console" }
|
|
deno_core = { version = "0.95.0", path = "../core" }
|
|
deno_crypto = { version = "0.27.0", path = "../extensions/crypto" }
|
|
deno_fetch = { version = "0.36.0", path = "../extensions/fetch" }
|
|
deno_ffi = { version = "0.1.0", path = "../extensions/ffi" }
|
|
deno_http = { version = "0.4.0", path = "../extensions/http" }
|
|
deno_net = { version = "0.4.0", path = "../extensions/net" }
|
|
deno_timers = { version = "0.11.0", path = "../extensions/timers" }
|
|
deno_tls = { version = "0.1.0", path = "../extensions/tls" }
|
|
deno_url = { version = "0.13.0", path = "../extensions/url" }
|
|
deno_web = { version = "0.44.0", path = "../extensions/web" }
|
|
deno_webgpu = { version = "0.14.0", path = "../extensions/webgpu" }
|
|
deno_webidl = { version = "0.13.0", path = "../extensions/webidl" }
|
|
deno_websocket = { version = "0.18.0", path = "../extensions/websocket" }
|
|
deno_webstorage = { version = "0.8.0", path = "../extensions/webstorage" }
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1.11"
|
|
winapi = "0.3.9"
|
|
|
|
[dependencies]
|
|
deno_broadcast_channel = { version = "0.7.0", path = "../extensions/broadcast_channel" }
|
|
deno_console = { version = "0.13.0", path = "../extensions/console" }
|
|
deno_core = { version = "0.95.0", path = "../core" }
|
|
deno_crypto = { version = "0.27.0", path = "../extensions/crypto" }
|
|
deno_fetch = { version = "0.36.0", path = "../extensions/fetch" }
|
|
deno_ffi = { version = "0.1.0", path = "../extensions/ffi" }
|
|
deno_http = { version = "0.4.0", path = "../extensions/http" }
|
|
deno_net = { version = "0.4.0", path = "../extensions/net" }
|
|
deno_timers = { version = "0.11.0", path = "../extensions/timers" }
|
|
deno_tls = { version = "0.1.0", path = "../extensions/tls" }
|
|
deno_url = { version = "0.13.0", path = "../extensions/url" }
|
|
deno_web = { version = "0.44.0", path = "../extensions/web" }
|
|
deno_webgpu = { version = "0.14.0", path = "../extensions/webgpu" }
|
|
deno_webidl = { version = "0.13.0", path = "../extensions/webidl" }
|
|
deno_websocket = { version = "0.18.0", path = "../extensions/websocket" }
|
|
deno_webstorage = { version = "0.8.0", path = "../extensions/webstorage" }
|
|
|
|
atty = "0.2.14"
|
|
dlopen = "0.1.8"
|
|
encoding_rs = "0.8.28"
|
|
filetime = "0.2.14"
|
|
http = "0.2.4"
|
|
hyper = { version = "0.14.10", features = ["server", "stream", "http1", "http2", "runtime"] }
|
|
# TODO(lucacasonato): unlock when https://github.com/tkaitchuck/aHash/issues/95 is resolved
|
|
indexmap = "=1.6.2"
|
|
lazy_static = "1.4.0"
|
|
libc = "0.2.98"
|
|
log = "0.4.14"
|
|
notify = "=5.0.0-pre.10"
|
|
percent-encoding = "2.1.0"
|
|
regex = "1.4.3"
|
|
ring = "0.16.20"
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
|
sys-info = "0.9.0"
|
|
termcolor = "1.1.2"
|
|
tokio = { version = "1.8.1", features = ["full"] }
|
|
uuid = { version = "0.8.2", features = ["v4"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
fwdansi = "1.1.0"
|
|
winapi = { version = "0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = "0.20.0"
|
|
|
|
[dev-dependencies]
|
|
# Used in benchmark
|
|
test_util = { path = "../test_util" }
|