2021-01-11 12:13:41 -05: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-10-25 07:11:55 -04:00
|
|
|
version = "1.15.3"
|
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 09:03:50 -04:00
|
|
|
[[bench]]
|
|
|
|
name = "deno_bench"
|
|
|
|
harness = false
|
|
|
|
path = "./bench/main.rs"
|
|
|
|
|
2019-10-04 20:28:51 -04:00
|
|
|
[build-dependencies]
|
2021-10-25 02:48:01 -04:00
|
|
|
deno_broadcast_channel = { version = "0.17.0", path = "../ext/broadcast_channel" }
|
|
|
|
deno_console = { version = "0.23.0", path = "../ext/console" }
|
|
|
|
deno_core = { version = "0.105.0", path = "../core" }
|
|
|
|
deno_crypto = { version = "0.37.0", path = "../ext/crypto" }
|
|
|
|
deno_fetch = { version = "0.46.0", path = "../ext/fetch" }
|
|
|
|
deno_net = { version = "0.15.0", path = "../ext/net" }
|
|
|
|
deno_url = { version = "0.23.0", path = "../ext/url" }
|
|
|
|
deno_web = { version = "0.54.0", path = "../ext/web" }
|
|
|
|
deno_webgpu = { version = "0.24.0", path = "../ext/webgpu" }
|
|
|
|
deno_websocket = { version = "0.28.0", path = "../ext/websocket" }
|
|
|
|
deno_webstorage = { version = "0.18.0", path = "../ext/webstorage" }
|
2021-09-02 17:38:44 -04:00
|
|
|
regex = "1.5.4"
|
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2019-10-04 20:28:51 -04:00
|
|
|
|
2020-07-15 15:54:38 -04:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
2020-08-12 11:09:48 -04:00
|
|
|
winapi = "0.3.9"
|
2021-01-12 02:50:02 -05:00
|
|
|
winres = "0.1.11"
|
2020-07-15 15:54:38 -04:00
|
|
|
|
2019-03-30 14:45:36 -04:00
|
|
|
[dependencies]
|
2021-10-21 10:18:18 -04:00
|
|
|
deno_ast = { version = "0.4.1", features = ["bundler", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] }
|
2021-10-25 02:48:01 -04:00
|
|
|
deno_core = { version = "0.105.0", path = "../core" }
|
2021-10-21 10:18:18 -04:00
|
|
|
deno_doc = "0.17.1"
|
|
|
|
deno_graph = "0.8.2"
|
|
|
|
deno_lint = { version = "0.18.1", features = ["docs"] }
|
2021-10-25 02:48:01 -04:00
|
|
|
deno_runtime = { version = "0.31.0", path = "../runtime" }
|
|
|
|
deno_tls = { version = "0.10.0", path = "../ext/tls" }
|
2019-03-30 14:45:36 -04:00
|
|
|
|
2020-03-07 15:51:23 -05:00
|
|
|
atty = "0.2.14"
|
2021-01-12 02:50:02 -05:00
|
|
|
base64 = "0.13.0"
|
2020-09-13 17:29:23 -04:00
|
|
|
clap = "2.33.3"
|
2021-04-23 14:43:13 -04:00
|
|
|
data-url = "0.1.0"
|
2020-06-19 13:44:28 -04:00
|
|
|
dissimilar = "1.0.2"
|
2021-09-02 18:28:12 -04:00
|
|
|
dprint-plugin-json = "0.13.0"
|
|
|
|
dprint-plugin-markdown = "0.10.0"
|
2021-10-21 10:18:18 -04:00
|
|
|
dprint-plugin-typescript = "0.58.1"
|
2021-02-09 09:34:34 -05:00
|
|
|
encoding_rs = "0.8.28"
|
2021-07-09 11:15:50 -04:00
|
|
|
env_logger = "0.8.4"
|
2021-09-02 17:38:44 -04:00
|
|
|
fancy-regex = "0.7.1"
|
2021-07-09 11:15:50 -04:00
|
|
|
http = "0.2.4"
|
2021-10-04 19:35:55 -04:00
|
|
|
import_map = "0.3.3"
|
2021-04-04 07:27:13 -04:00
|
|
|
jsonc-parser = { version = "0.17.0", features = ["serde"] }
|
2019-09-12 16:20:15 -04:00
|
|
|
lazy_static = "1.4.0"
|
2021-09-02 17:38:44 -04:00
|
|
|
libc = "0.2.101"
|
2021-02-09 09:34:34 -05:00
|
|
|
log = { version = "0.4.14", features = ["serde"] }
|
2021-07-09 11:15:50 -04:00
|
|
|
lspower = "1.1.0"
|
2021-09-02 17:38:44 -04:00
|
|
|
notify = "5.0.0-pre.12"
|
2021-04-30 08:57:42 -04:00
|
|
|
num_cpus = "1.13.0"
|
2021-09-07 10:39:32 -04:00
|
|
|
once_cell = "1.8.0"
|
2020-12-07 05:46:39 -05:00
|
|
|
percent-encoding = "2.1.0"
|
2021-09-02 17:38:44 -04:00
|
|
|
pin-project = "1.0.8"
|
2021-08-02 10:19:27 -04:00
|
|
|
rand = { version = "0.8.4", features = ["small_rng"] }
|
2021-09-02 17:38:44 -04:00
|
|
|
regex = "1.5.4"
|
2021-02-09 09:34:34 -05:00
|
|
|
ring = "0.16.20"
|
2021-09-02 17:38:44 -04:00
|
|
|
rustyline = { version = "9.0.0", default-features = false }
|
|
|
|
rustyline-derive = "0.5.0"
|
2021-01-12 02:50:02 -05:00
|
|
|
semver-parser = "0.10.2"
|
2021-09-02 17:38:44 -04:00
|
|
|
serde = { version = "1.0.129", features = ["derive"] }
|
2020-11-09 14:08:12 -05:00
|
|
|
shell-escape = "0.1.5"
|
2020-08-12 11:09:48 -04:00
|
|
|
sourcemap = "6.0.1"
|
2021-01-26 11:00:40 -05:00
|
|
|
tempfile = "3.2.0"
|
2021-01-22 05:03:16 -05:00
|
|
|
text-size = "1.1.0"
|
2021-09-02 17:38:44 -04:00
|
|
|
tokio = { version = "1.10.1", features = ["full"] }
|
2021-04-25 17:38:59 -04:00
|
|
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
2021-04-08 12:46:14 -04: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 11:41:54 -05:00
|
|
|
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"] }
|
2019-04-21 21:26:56 -04:00
|
|
|
|
2019-09-10 11:09:54 -04:00
|
|
|
[dev-dependencies]
|
2020-08-28 09:03:50 -04:00
|
|
|
# Used in benchmark
|
2021-01-12 02:50:02 -05:00
|
|
|
chrono = "0.4.19"
|
2021-08-11 11:38:07 -04:00
|
|
|
flaky_test = "0.1.0"
|
2020-05-30 05:35:44 -04:00
|
|
|
os_pipe = "0.9.2"
|
2021-09-15 06:34:17 -04:00
|
|
|
pretty_assertions = "0.7.2"
|
2020-06-18 11:54:55 -04:00
|
|
|
test_util = { path = "../test_util" }
|
2021-07-09 11:15:50 -04:00
|
|
|
trust-dns-client = "0.20.3"
|
2021-08-02 10:19:27 -04:00
|
|
|
trust-dns-server = "0.20.3"
|
2020-02-26 01:01:24 -05:00
|
|
|
|
2020-11-27 12:08:28 -05:00
|
|
|
[target.'cfg(unix)'.dev-dependencies]
|
2021-09-02 17:38:44 -04:00
|
|
|
nix = "0.22.1"
|
2020-11-27 12:08:28 -05:00
|
|
|
|
2020-07-15 15:54:38 -04: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"
|