mirror of
https://github.com/denoland/deno.git
synced 2025-01-21 04:52:26 -05:00
9aa02769c8
This is achieved by storing CJS export analysis ahead of time in the executable, which should also improve the performance of `denort` by this never being done anymore (I'm too lazy atm to bench this, but it will be significant for some programs).
63 lines
1.9 KiB
TOML
63 lines
1.9 KiB
TOML
# Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
[package]
|
|
name = "denort"
|
|
version = "2.1.5"
|
|
authors.workspace = true
|
|
default-run = "denort"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
repository.workspace = true
|
|
description = "Provides the denort executable"
|
|
|
|
[[bin]]
|
|
name = "denort"
|
|
path = "main.rs"
|
|
doc = false
|
|
|
|
[[test]]
|
|
name = "integration"
|
|
path = "integration_tests_runner.rs"
|
|
harness = false
|
|
|
|
[build-dependencies]
|
|
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting", "only_snapshotted_js_sources"] }
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
|
|
|
[dependencies]
|
|
deno_cache_dir.workspace = true
|
|
deno_config.workspace = true
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
|
deno_error.workspace = true
|
|
deno_lib.workspace = true
|
|
deno_media_type = { workspace = true, features = ["data_url", "decoding"] }
|
|
deno_npm.workspace = true
|
|
deno_package_json.workspace = true
|
|
deno_path_util.workspace = true
|
|
deno_resolver = { workspace = true, features = ["sync"] }
|
|
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
|
deno_semver.workspace = true
|
|
deno_snapshots.workspace = true
|
|
deno_terminal.workspace = true
|
|
libsui = "0.5.0"
|
|
node_resolver.workspace = true
|
|
|
|
async-trait.workspace = true
|
|
bincode = "=1.3.3"
|
|
import_map = { version = "=0.21.0", features = ["ext"] }
|
|
indexmap.workspace = true
|
|
log = { workspace = true, features = ["serde"] }
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
sys_traits = { workspace = true, features = ["getrandom", "filetime", "libc", "real", "strip_unc", "winapi"] }
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
tokio-util.workspace = true
|
|
twox-hash.workspace = true
|
|
url.workspace = true
|
|
|
|
[dev-dependencies]
|
|
pretty_assertions.workspace = true
|
|
sys_traits = { workspace = true, features = ["memory"] }
|
|
test_util.workspace = true
|