2021-01-12 02:13:41 +09:00
|
|
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
2019-03-30 14:45:36 -04:00
|
|
|
|
|
|
|
[package]
|
2020-01-05 11:56:18 -05:00
|
|
|
name = "deno"
|
2021-07-26 16:38:27 +02:00
|
|
|
version = "1.12.2"
|
2019-09-15 18:36:27 -04:00
|
|
|
authors = ["the Deno authors"]
|
2021-08-02 10:19:27 -04:00
|
|
|
default-run = "deno"
|
2019-03-30 14:45:36 -04:00
|
|
|
edition = "2018"
|
2021-08-02 10:19:27 -04:00
|
|
|
license = "MIT"
|
2019-09-15 18:36:27 -04:00
|
|
|
repository = "https://github.com/denoland/deno"
|
2021-08-02 10:19:27 -04:00
|
|
|
description = "Provides the deno executable"
|
2019-03-30 14:45:36 -04:00
|
|
|
|
2019-09-16 21:05:14 -04:00
|
|
|
[[bin]]
|
|
|
|
name = "deno"
|
|
|
|
path = "main.rs"
|
|
|
|
|
2020-08-28 15:03:50 +02:00
|
|
|
[[bench]]
|
|
|
|
name = "deno_bench"
|
|
|
|
harness = false
|
|
|
|
path = "./bench/main.rs"
|
|
|
|
|
2019-10-04 20:28:51 -04:00
|
|
|
[build-dependencies]
|
2021-07-26 15:45:40 +02:00
|
|
|
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" }
|
2021-07-29 21:59:44 +05:30
|
|
|
deno_fetch = { version = "0.36.0", path = "../extensions/fetch" }
|
2021-07-26 15:45:40 +02:00
|
|
|
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_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" }
|
2021-01-12 08:50:02 +01:00
|
|
|
regex = "1.4.3"
|
2021-04-08 18:46:14 +02:00
|
|
|
serde = { version = "1.0.125", features = ["derive"] }
|
2019-10-04 20:28:51 -04:00
|
|
|
|
2020-07-15 22:54:38 +03:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
2020-08-12 17:09:48 +02:00
|
|
|
winapi = "0.3.9"
|
2021-01-12 08:50:02 +01:00
|
|
|
winres = "0.1.11"
|
2020-07-15 22:54:38 +03:00
|
|
|
|
2019-03-30 14:45:36 -04:00
|
|
|
[dependencies]
|
2021-07-26 15:45:40 +02:00
|
|
|
deno_core = { version = "0.95.0", path = "../core" }
|
2021-07-14 21:28:01 -04:00
|
|
|
deno_doc = "0.9.0"
|
|
|
|
deno_lint = "0.11.0"
|
2021-07-26 15:45:40 +02:00
|
|
|
deno_runtime = { version = "0.21.0", path = "../runtime" }
|
2019-03-30 14:45:36 -04:00
|
|
|
|
2020-03-07 15:51:23 -05:00
|
|
|
atty = "0.2.14"
|
2021-01-12 08:50:02 +01:00
|
|
|
base64 = "0.13.0"
|
2021-04-08 18:46:14 +02:00
|
|
|
byteorder = "1.4.3"
|
2020-09-13 23:29:23 +02:00
|
|
|
clap = "2.33.3"
|
2021-04-24 00:13:13 +05:30
|
|
|
data-url = "0.1.0"
|
2020-06-19 13:44:28 -04:00
|
|
|
dissimilar = "1.0.2"
|
2021-07-01 11:22:28 -04:00
|
|
|
dprint-plugin-json = "0.12.1"
|
2021-07-05 19:48:24 +02:00
|
|
|
dprint-plugin-markdown = "0.9.2"
|
2021-08-04 23:17:32 -04:00
|
|
|
dprint-plugin-typescript = "0.50.0"
|
2021-02-09 15:34:34 +01:00
|
|
|
encoding_rs = "0.8.28"
|
2021-07-09 17:15:50 +02:00
|
|
|
env_logger = "0.8.4"
|
2021-04-09 11:27:27 +10:00
|
|
|
fancy-regex = "0.5.0"
|
2021-01-26 17:00:40 +01:00
|
|
|
filetime = "0.2.14"
|
2021-07-09 17:15:50 +02:00
|
|
|
http = "0.2.4"
|
|
|
|
# TODO(lucacasonato): unlock when https://github.com/tkaitchuck/aHash/issues/95 is resolved
|
2021-08-02 10:19:27 -04:00
|
|
|
indexmap = { version = "=1.6.2", features = ["serde"] }
|
2021-04-04 07:27:13 -04:00
|
|
|
jsonc-parser = { version = "0.17.0", features = ["serde"] }
|
2019-09-12 22:20:15 +02:00
|
|
|
lazy_static = "1.4.0"
|
2021-07-09 17:15:50 +02:00
|
|
|
libc = "0.2.98"
|
2021-02-09 15:34:34 +01:00
|
|
|
log = { version = "0.4.14", features = ["serde"] }
|
2021-07-09 17:15:50 +02:00
|
|
|
lspower = "1.1.0"
|
|
|
|
notify = "5.0.0-pre.10"
|
2021-04-30 20:57:42 +08:00
|
|
|
num_cpus = "1.13.0"
|
2020-12-07 21:46:39 +11:00
|
|
|
percent-encoding = "2.1.0"
|
2021-07-09 17:15:50 +02:00
|
|
|
pin-project = "1.0.7"
|
2021-08-02 10:19:27 -04:00
|
|
|
rand = { version = "0.8.4", features = ["small_rng"] }
|
2021-01-12 08:50:02 +01:00
|
|
|
regex = "1.4.3"
|
2021-02-09 15:34:34 +01:00
|
|
|
ring = "0.16.20"
|
2021-07-09 17:15:50 +02:00
|
|
|
rustyline = { version = "8.2.0", default-features = false }
|
2020-11-28 22:03:40 +08:00
|
|
|
rustyline-derive = "0.4.0"
|
2021-01-12 08:50:02 +01:00
|
|
|
semver-parser = "0.10.2"
|
2021-07-09 17:15:50 +02:00
|
|
|
serde = { version = "1.0.126", features = ["derive"] }
|
2020-11-09 19:08:12 +00:00
|
|
|
shell-escape = "0.1.5"
|
2020-08-12 17:09:48 +02:00
|
|
|
sourcemap = "6.0.1"
|
2021-07-14 21:28:01 -04:00
|
|
|
swc_bundler = "0.46.0"
|
2021-08-06 10:36:16 -04:00
|
|
|
swc_common = { version = "0.11.4", features = ["sourcemap"] }
|
2021-07-14 21:28:01 -04:00
|
|
|
swc_ecmascript = { version = "0.46.0", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] }
|
2021-01-26 17:00:40 +01:00
|
|
|
tempfile = "3.2.0"
|
2021-01-12 08:50:02 +01:00
|
|
|
termcolor = "1.1.2"
|
2021-01-22 21:03:16 +11:00
|
|
|
text-size = "1.1.0"
|
2021-07-09 17:15:50 +02:00
|
|
|
tokio = { version = "1.8.1", features = ["full"] }
|
2021-01-12 08:50:02 +01:00
|
|
|
tokio-rustls = "0.22.0"
|
2021-04-26 05:38:59 +08:00
|
|
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
2021-04-08 18:46:14 +02:00
|
|
|
walkdir = "2.3.2"
|
2020-03-27 16:09:51 -04:00
|
|
|
|
2019-03-30 14:45:36 -04:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2020-01-05 17:41:54 +01:00
|
|
|
fwdansi = "1.1.0"
|
2021-01-12 08:50:02 +01:00
|
|
|
winapi = { version = "0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
|
2019-04-21 18:26:56 -07:00
|
|
|
|
2019-09-10 17:09:54 +02:00
|
|
|
[dev-dependencies]
|
2020-08-28 15:03:50 +02:00
|
|
|
# Used in benchmark
|
2021-01-12 08:50:02 +01:00
|
|
|
chrono = "0.4.19"
|
2020-05-30 05:35:44 -04:00
|
|
|
os_pipe = "0.9.2"
|
2020-06-18 17:54:55 +02:00
|
|
|
test_util = { path = "../test_util" }
|
2021-01-12 08:50:02 +01:00
|
|
|
tower-test = "0.4.0"
|
2021-07-09 17:15:50 +02:00
|
|
|
trust-dns-client = "0.20.3"
|
2021-08-02 10:19:27 -04:00
|
|
|
trust-dns-server = "0.20.3"
|
2020-02-25 22:01:24 -08:00
|
|
|
|
2020-11-27 12:08:28 -05:00
|
|
|
[target.'cfg(unix)'.dev-dependencies]
|
|
|
|
exec = "0.3.1" # Used in test_raw_tty
|
2021-03-15 21:08:41 +08:00
|
|
|
nix = "0.20.0"
|
2020-11-27 12:08:28 -05:00
|
|
|
|
2020-07-15 22:54:38 +03:00
|
|
|
[package.metadata.winres]
|
|
|
|
# This section defines the metadata that appears in the deno.exe PE header.
|
|
|
|
OriginalFilename = "deno.exe"
|
|
|
|
LegalCopyright = "© Deno contributors & Deno Land Inc. MIT licensed."
|
|
|
|
ProductName = "Deno"
|
2021-04-01 19:10:00 -04:00
|
|
|
FileDescription = "Deno: A secure runtime for JavaScript and TypeScript"
|