2023-01-02 16:00:42 -05:00
|
|
|
# Copyright 2018-2023 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"
|
2023-07-26 10:18:02 -04:00
|
|
|
version = "1.35.3"
|
2022-11-22 15:07:35 -05:00
|
|
|
authors.workspace = true
|
2021-08-02 10:19:27 -04:00
|
|
|
default-run = "deno"
|
2022-11-22 15:07:35 -05:00
|
|
|
edition.workspace = true
|
2022-09-09 19:43:51 -04:00
|
|
|
exclude = ["tests/testdata/npm/registry/*"]
|
2022-11-22 15:07:35 -05:00
|
|
|
license.workspace = true
|
|
|
|
repository.workspace = true
|
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"
|
2023-01-04 07:19:58 -05:00
|
|
|
doc = false
|
2019-09-16 21:05:14 -04:00
|
|
|
|
2020-08-28 09:03:50 -04:00
|
|
|
[[bench]]
|
|
|
|
name = "deno_bench"
|
|
|
|
harness = false
|
|
|
|
path = "./bench/main.rs"
|
|
|
|
|
2022-01-18 06:58:50 -05:00
|
|
|
[[bench]]
|
|
|
|
name = "lsp_bench_standalone"
|
|
|
|
harness = false
|
|
|
|
path = "./bench/lsp_bench_standalone.rs"
|
|
|
|
|
2019-10-04 20:28:51 -04:00
|
|
|
[build-dependencies]
|
2023-06-26 07:54:10 -04:00
|
|
|
deno_runtime = { workspace = true, features = ["snapshot_from_snapshot", "include_js_files_for_snapshotting"] }
|
|
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
2023-04-12 21:08:01 -04:00
|
|
|
lazy-regex.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
serde.workspace = true
|
|
|
|
serde_json.workspace = true
|
2023-03-21 15:11:22 -04:00
|
|
|
zstd.workspace = true
|
2022-10-15 11:21:04 -04:00
|
|
|
glibc_version = "0.1.2"
|
2019-10-04 20:28:51 -04:00
|
|
|
|
2020-07-15 15:54:38 -04:00
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
winapi.workspace = true
|
|
|
|
winres.workspace = true
|
2020-07-15 15:54:38 -04:00
|
|
|
|
2019-03-30 14:45:36 -04:00
|
|
|
[dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] }
|
2023-06-26 07:54:10 -04:00
|
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
2023-06-05 19:03:39 -04:00
|
|
|
deno_doc = "=0.63.1"
|
|
|
|
deno_emit = "=0.24.0"
|
|
|
|
deno_graph = "=0.49.0"
|
2023-07-03 21:20:06 -04:00
|
|
|
deno_lint = { version = "=0.49.0", features = ["docs"] }
|
2023-01-23 17:41:02 -05:00
|
|
|
deno_lockfile.workspace = true
|
2023-04-21 21:02:46 -04:00
|
|
|
deno_npm.workspace = true
|
2023-06-26 07:54:10 -04:00
|
|
|
deno_runtime = { workspace = true, features = ["dont_create_runtime_snapshot", "include_js_files_for_snapshotting"] }
|
2023-04-21 21:02:46 -04:00
|
|
|
deno_semver.workspace = true
|
2023-07-26 08:34:27 -04:00
|
|
|
deno_task_shell = "=0.13.1"
|
2023-06-30 08:49:49 -04:00
|
|
|
eszip = "=0.45.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
napi_sym.workspace = true
|
2019-03-30 14:45:36 -04:00
|
|
|
|
2023-02-21 12:03:48 -05:00
|
|
|
async-trait.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
atty.workspace = true
|
2022-11-16 13:44:31 -05:00
|
|
|
base32 = "=0.4.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
base64.workspace = true
|
2023-07-10 13:42:47 -04:00
|
|
|
bincode = "=1.3.3"
|
2022-11-22 15:07:35 -05:00
|
|
|
cache_control.workspace = true
|
2023-07-25 21:40:09 -04:00
|
|
|
chrono = { version = "=0.4.26", default-features = false, features = ["std"] }
|
2023-06-12 07:54:04 -04:00
|
|
|
clap = { version = "=4.3.3", features = ["string"] }
|
|
|
|
clap_complete = "=4.3.1"
|
|
|
|
clap_complete_fig = "=4.3.1"
|
2023-03-09 19:09:14 -05:00
|
|
|
console_static_text.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
data-url.workspace = true
|
2022-09-16 19:11:30 -04:00
|
|
|
dissimilar = "=1.0.4"
|
2023-06-09 12:38:38 -04:00
|
|
|
dprint-plugin-json = "=0.17.4"
|
2023-06-05 19:03:39 -04:00
|
|
|
dprint-plugin-markdown = "=0.15.3"
|
|
|
|
dprint-plugin-typescript = "=0.85.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
encoding_rs.workspace = true
|
2022-05-05 06:41:59 -04:00
|
|
|
env_logger = "=0.9.0"
|
2022-08-09 17:27:22 -04:00
|
|
|
fancy-regex = "=0.10.0"
|
2023-04-22 05:17:31 -04:00
|
|
|
fastwebsockets.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
flate2.workspace = true
|
2023-03-08 10:13:13 -05:00
|
|
|
fs3.workspace = true
|
2023-05-22 21:39:59 -04:00
|
|
|
glob = "0.3.1"
|
2022-11-22 15:07:35 -05:00
|
|
|
http.workspace = true
|
2023-04-22 05:17:31 -04:00
|
|
|
hyper.workspace = true
|
2023-01-25 15:13:40 -05:00
|
|
|
import_map = "=0.15.0"
|
2023-02-22 22:45:35 -05:00
|
|
|
indexmap.workspace = true
|
2023-04-30 10:03:39 -04:00
|
|
|
jsonc-parser = { version = "=0.21.1", features = ["serde"] }
|
2023-04-12 21:08:01 -04:00
|
|
|
lazy-regex.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
libc.workspace = true
|
|
|
|
log = { workspace = true, features = ["serde"] }
|
2023-03-08 18:15:20 -05:00
|
|
|
lsp-types.workspace = true
|
2023-05-10 20:06:59 -04:00
|
|
|
monch = "=0.4.2"
|
2022-11-22 15:07:35 -05:00
|
|
|
notify.workspace = true
|
|
|
|
once_cell.workspace = true
|
|
|
|
os_pipe.workspace = true
|
|
|
|
percent-encoding.workspace = true
|
|
|
|
pin-project.workspace = true
|
|
|
|
rand = { workspace = true, features = ["small_rng"] }
|
|
|
|
regex.workspace = true
|
|
|
|
ring.workspace = true
|
2022-07-18 14:47:00 -04:00
|
|
|
rustyline = { version = "=10.0.0", default-features = false, features = ["custom-bindings"] }
|
|
|
|
rustyline-derive = "=0.7.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
serde.workspace = true
|
|
|
|
serde_repr.workspace = true
|
2021-12-06 19:43:09 -05:00
|
|
|
shell-escape = "=0.1.5"
|
2022-11-22 15:07:35 -05:00
|
|
|
tar.workspace = true
|
2023-03-22 14:55:19 -04:00
|
|
|
tempfile.workspace = true
|
2021-12-06 19:43:09 -05:00
|
|
|
text-size = "=1.1.0"
|
2022-07-11 19:02:11 -04:00
|
|
|
text_lines = "=0.6.0"
|
2023-03-14 10:55:52 -04:00
|
|
|
thiserror.workspace = true
|
2022-11-22 15:07:35 -05:00
|
|
|
tokio.workspace = true
|
|
|
|
tokio-util.workspace = true
|
2023-03-08 18:15:20 -05:00
|
|
|
tower-lsp.workspace = true
|
2022-09-16 19:11:30 -04:00
|
|
|
twox-hash = "=1.6.3"
|
|
|
|
typed-arena = "=2.0.1"
|
2022-11-22 15:07:35 -05:00
|
|
|
uuid = { workspace = true, features = ["serde"] }
|
2021-12-06 19:43:09 -05:00
|
|
|
walkdir = "=2.3.2"
|
2023-03-21 15:11:22 -04:00
|
|
|
zstd.workspace = true
|
2020-03-27 16:09:51 -04:00
|
|
|
|
2019-03-30 14:45:36 -04:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
fwdansi.workspace = true
|
2022-09-27 18:02:35 -04:00
|
|
|
junction = "=0.2.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
winapi = { workspace = true, features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
|
2019-04-21 21:26:56 -04:00
|
|
|
|
2022-10-21 15:50:03 -04:00
|
|
|
[target.'cfg(unix)'.dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
nix.workspace = true
|
2022-10-21 15:50:03 -04:00
|
|
|
|
2019-09-10 11:09:54 -04:00
|
|
|
[dev-dependencies]
|
2022-11-22 15:07:35 -05:00
|
|
|
deno_bench_util.workspace = true
|
2022-09-16 19:11:30 -04:00
|
|
|
dotenv = "=0.15.0"
|
2021-12-06 19:43:09 -05:00
|
|
|
flaky_test = "=0.1.0"
|
2022-11-22 15:07:35 -05:00
|
|
|
once_cell.workspace = true
|
|
|
|
os_pipe.workspace = true
|
|
|
|
pretty_assertions.workspace = true
|
|
|
|
test_util.workspace = true
|
2022-09-16 19:11:30 -04:00
|
|
|
trust-dns-client = "=0.22.0"
|
|
|
|
trust-dns-server = "=0.22.0"
|
2020-02-26 01:01:24 -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"
|