deno/cli/Cargo.toml

133 lines
4.1 KiB
TOML
Raw Normal View History

# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno"
version = "1.23.3"
authors = ["the Deno authors"]
default-run = "deno"
edition = "2021"
license = "MIT"
repository = "https://github.com/denoland/deno"
description = "Provides the deno executable"
[[bin]]
name = "deno"
path = "main.rs"
[[bench]]
name = "deno_bench"
harness = false
path = "./bench/main.rs"
[[bench]]
name = "lsp_bench_standalone"
harness = false
path = "./bench/lsp_bench_standalone.rs"
[build-dependencies]
deno_broadcast_channel = { version = "0.54.0", path = "../ext/broadcast_channel" }
deno_console = { version = "0.60.0", path = "../ext/console" }
deno_core = { version = "0.142.0", path = "../core" }
deno_crypto = { version = "0.74.0", path = "../ext/crypto" }
deno_fetch = { version = "0.83.0", path = "../ext/fetch" }
deno_net = { version = "0.52.0", path = "../ext/net" }
deno_url = { version = "0.60.0", path = "../ext/url" }
deno_web = { version = "0.91.0", path = "../ext/web" }
deno_webgpu = { version = "0.61.0", path = "../ext/webgpu" }
deno_websocket = { version = "0.65.0", path = "../ext/websocket" }
deno_webstorage = { version = "0.55.0", path = "../ext/webstorage" }
regex = "=1.5.6"
2022-07-11 18:10:12 +00:00
serde = { version = "=1.0.139", features = ["derive"] }
2022-05-05 10:41:59 +00:00
zstd = '=0.11.1'
[target.'cfg(windows)'.build-dependencies]
winapi = "=0.3.9"
2022-05-05 10:41:59 +00:00
winres = "=0.1.12"
[dependencies]
2022-07-11 18:10:12 +00:00
deno_ast = { version = "0.17.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
deno_core = { version = "0.142.0", path = "../core" }
2022-07-11 18:10:12 +00:00
deno_doc = "0.38.0"
deno_emit = "0.4.0"
deno_graph = "0.29.0"
deno_lint = { version = "0.32.0", features = ["docs"] }
deno_runtime = { version = "0.68.0", path = "../runtime" }
deno_task_shell = "0.4.0"
atty = "=0.2.14"
base64 = "=0.13.0"
cache_control = "=0.2.0"
chrono = "=0.4.19"
2022-05-05 10:41:59 +00:00
clap = "=3.1.12"
clap_complete = "=3.1.2"
clap_complete_fig = "=3.1.5"
data-url = "=0.1.1"
2022-05-05 10:41:59 +00:00
dissimilar = "=1.0.3"
dprint-plugin-json = "=0.15.3"
dprint-plugin-markdown = "=0.13.3"
2022-07-11 18:10:12 +00:00
dprint-plugin-typescript = "=0.69.6"
2022-05-05 10:41:59 +00:00
encoding_rs = "=0.8.31"
env_logger = "=0.9.0"
2022-07-11 18:10:12 +00:00
eszip = "=0.22.0"
2022-05-05 10:41:59 +00:00
fancy-regex = "=0.9.0"
http = "=0.2.6"
import_map = "=0.11.0"
indexmap = "1.8.1"
2022-02-02 18:24:24 +00:00
jsonc-parser = { version = "=0.19.0", features = ["serde"] }
libc = "=0.2.126"
log = { version = "=0.4.17", features = ["serde"] }
mitata = '=0.0.7'
2022-03-17 01:37:02 +00:00
node_resolver = "=0.1.1"
notify = "=5.0.0-pre.15"
once_cell = "=1.12.0"
os_pipe = "=1.0.1"
percent-encoding = "=2.1.0"
pin-project = "1.0.11" # don't pin because they yank crates from cargo
2022-05-05 10:41:59 +00:00
rand = { version = "=0.8.5", features = ["small_rng"] }
regex = "=1.5.6"
ring = "=0.16.20"
2022-02-17 14:01:26 +00:00
rustyline = { version = "=9.1.2", default-features = false }
rustyline-derive = "=0.6.0"
2022-05-05 10:41:59 +00:00
secure_tempfile = { version = "=3.3.0", package = "tempfile" } # different name to discourage use in tests
semver-parser = "=0.10.2"
2022-07-11 18:10:12 +00:00
serde = { version = "=1.0.139", features = ["derive"] }
serde_repr = "=0.1.8"
shell-escape = "=0.1.5"
text-size = "=1.1.0"
text_lines = "=0.4.1"
tokio = { version = "=1.19", features = ["full"] }
tokio-util = "=0.7.2"
2022-05-05 10:41:59 +00:00
tower-lsp = "=0.17.0"
twox-hash = "=1.6.2"
typed-arena = "2.0.1"
2022-05-05 10:41:59 +00:00
uuid = { version = "=1.0.0", features = ["v4", "serde"] }
walkdir = "=2.3.2"
2022-05-05 10:41:59 +00:00
zstd = '=0.11.1'
[target.'cfg(windows)'.dependencies]
fwdansi = "=1.1.0"
winapi = { version = "=0.3.9", features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
[dev-dependencies]
csv = "1.1.6"
deno_bench_util = { version = "0.54.0", path = "../bench_util" }
dotenv = "0.15.0"
flaky_test = "=0.1.0"
google-storage1 = "3.1.0"
once_cell = "=1.12.0"
2022-03-11 18:20:14 +00:00
os_pipe = "=1.0.1"
2022-05-05 10:41:59 +00:00
pretty_assertions = "=1.2.1"
test_util = { path = "../test_util" }
2022-05-05 10:41:59 +00:00
trust-dns-client = "=0.21.2"
trust-dns-server = "=0.21.2"
2020-11-27 17:08:28 +00:00
[target.'cfg(unix)'.dev-dependencies]
2022-02-17 14:01:26 +00:00
nix = "=0.23.0"
2020-11-27 17:08:28 +00: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"
FileDescription = "Deno: A secure runtime for JavaScript and TypeScript"