deno/cli/Cargo.toml

105 lines
2.8 KiB
TOML
Raw Normal View History

# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno"
2021-03-21 20:12:09 +00:00
version = "1.8.2"
license = "MIT"
authors = ["the Deno authors"]
edition = "2018"
description = "Provides the deno executable"
repository = "https://github.com/denoland/deno"
default-run = "deno"
[[bin]]
name = "deno"
path = "main.rs"
[[bin]]
name = "denort"
path = "main_runtime.rs"
[[bench]]
name = "deno_bench"
harness = false
path = "./bench/main.rs"
[build-dependencies]
2021-03-21 15:10:08 +00:00
deno_core = { path = "../core", version = "0.82.0" }
deno_runtime = { path = "../runtime", version = "0.10.0" }
regex = "1.4.3"
2021-02-09 14:34:34 +00:00
serde = { version = "1.0.123", features = ["derive"] }
[target.'cfg(windows)'.build-dependencies]
winapi = "0.3.9"
winres = "0.1.11"
[dependencies]
2021-03-21 15:10:08 +00:00
deno_core = { path = "../core", version = "0.82.0" }
2021-03-02 12:39:56 +00:00
deno_doc = "0.1.23"
deno_lint = "0.2.19"
2021-03-21 15:10:08 +00:00
deno_runtime = { path = "../runtime", version = "0.10.0" }
2020-03-07 20:51:23 +00:00
atty = "0.2.14"
base64 = "0.13.0"
byteorder = "1.4.2"
clap = "2.33.3"
2020-06-19 17:44:28 +00:00
dissimilar = "1.0.2"
dprint-plugin-json = "0.9.0"
dprint-plugin-markdown = "0.6.0"
2021-03-02 12:39:56 +00:00
dprint-plugin-typescript = "0.41.0"
2021-02-09 14:34:34 +00:00
encoding_rs = "0.8.28"
env_logger = "0.8.2"
filetime = "0.2.14"
http = "0.2.3"
indexmap = { version = "1.6.1", features = ["serde"] }
jsonc-parser = "0.15.1"
2019-09-12 20:20:15 +00:00
lazy_static = "1.4.0"
2021-02-09 14:34:34 +00:00
libc = "0.2.86"
log = { version = "0.4.14", features = ["serde"] }
lspower = "0.8.4"
notify = "5.0.0-pre.4"
percent-encoding = "2.1.0"
2021-02-09 14:34:34 +00:00
pin-project = "1.0.5"
regex = "1.4.3"
2021-02-09 14:34:34 +00:00
ring = "0.16.20"
rustyline = { version = "8.0.0", default-features = false }
rustyline-derive = "0.4.0"
semver-parser = "0.10.2"
2021-02-09 14:34:34 +00:00
serde = { version = "1.0.123", features = ["derive"] }
shell-escape = "0.1.5"
sourcemap = "6.0.1"
2021-03-02 12:39:56 +00:00
swc_bundler = "0.25.1"
swc_common = { version = "0.10.12", features = ["sourcemap"] }
swc_ecmascript = { version = "0.24.1", features = ["codegen", "dep_graph", "parser", "proposal", "react", "transforms", "typescript", "visit"] }
tempfile = "3.2.0"
termcolor = "1.1.2"
text-size = "1.1.0"
2021-03-20 15:51:27 +00:00
tokio = { version = "1.4.0", features = ["full"] }
tokio-rustls = "0.22.0"
uuid = { version = "0.8.2", features = ["v4"] }
walkdir = "2.3.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]
# Used in benchmark
chrono = "0.4.19"
2020-05-30 09:35:44 +00:00
os_pipe = "0.9.2"
test_util = { path = "../test_util" }
tower-test = "0.4.0"
trust-dns-server = "0.20.0"
trust-dns-client = "0.20.0"
2020-11-27 17:08:28 +00:00
[target.'cfg(unix)'.dev-dependencies]
exec = "0.3.1" # Used in test_raw_tty
nix = "0.20.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 = "A secure runtime for JavaScript and TypeScript."