summaryrefslogtreecommitdiff
path: root/runtime/Cargo.toml
blob: adf13165782d42b8662ce8fa6f6f1928a6d1c460 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.

[package]
name = "deno_runtime"
version = "0.57.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.43.0", path = "../ext/broadcast_channel" }
deno_console = { version = "0.49.0", path = "../ext/console" }
deno_core = { version = "0.131.0", path = "../core" }
deno_crypto = { version = "0.63.0", path = "../ext/crypto" }
deno_fetch = { version = "0.72.0", path = "../ext/fetch" }
deno_ffi = { version = "0.36.0", path = "../ext/ffi" }
deno_http = { version = "0.43.0", path = "../ext/http" }
deno_net = { version = "0.41.0", path = "../ext/net" }
deno_tls = { version = "0.36.0", path = "../ext/tls" }
deno_url = { version = "0.49.0", path = "../ext/url" }
deno_web = { version = "0.80.0", path = "../ext/web" }
deno_webgpu = { version = "0.50.0", path = "../ext/webgpu" }
deno_webidl = { version = "0.49.0", path = "../ext/webidl" }
deno_websocket = { version = "0.54.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.44.0", path = "../ext/webstorage" }

lzzzz = '=0.8.0'

[target.'cfg(windows)'.build-dependencies]
winres = "0.1.11"
winapi = "0.3.9"

[dependencies]
deno_broadcast_channel = { version = "0.43.0", path = "../ext/broadcast_channel" }
deno_console = { version = "0.49.0", path = "../ext/console" }
deno_core = { version = "0.131.0", path = "../core" }
deno_crypto = { version = "0.63.0", path = "../ext/crypto" }
deno_fetch = { version = "0.72.0", path = "../ext/fetch" }
deno_ffi = { version = "0.36.0", path = "../ext/ffi" }
deno_http = { version = "0.43.0", path = "../ext/http" }
deno_net = { version = "0.41.0", path = "../ext/net" }
deno_tls = { version = "0.36.0", path = "../ext/tls" }
deno_url = { version = "0.49.0", path = "../ext/url" }
deno_web = { version = "0.80.0", path = "../ext/web" }
deno_webgpu = { version = "0.50.0", path = "../ext/webgpu" }
deno_webidl = { version = "0.49.0", path = "../ext/webidl" }
deno_websocket = { version = "0.54.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.44.0", path = "../ext/webstorage" }

atty = "0.2.14"
dlopen = "0.1.8"
encoding_rs = "0.8.29"
filetime = "0.2.15"
fs3 = "0.5.0"
http = "0.2.4"
hyper = { version = "0.14.12", features = ["server", "stream", "http1", "http2", "runtime"] }
libc = "0.2.121"
log = "0.4.14"
lzzzz = '=0.8.0'
netif = "0.1.3"
notify = "=5.0.0-pre.14"
once_cell = "1.10.0"
regex = "1.5.5"
ring = "0.16.20"
serde = { version = "1.0.129", features = ["derive"] }
signal-hook-registry = "1.4.0"
sys-info = "0.9.0"
termcolor = "1.1.2"
tokio = { version = "1.17", features = ["full"] }
uuid = { version = "0.8.2", 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]
nix = "=0.23.0"

[dev-dependencies]
# Used in benchmark
test_util = { path = "../test_util" }

[package.metadata.docs.rs]
features = ["docsrs"]