[package]
edition = "2024"
name = "deno_core"
version = "0.406.0"
authors = ["the Deno authors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A modern JavaScript/TypeScript runtime built with V8, Rust, and Tokio"
readme = "README.md"
license = "MIT"
repository = "https://github.com/denoland/deno"
resolver = "2"
[features]
default = [
"v8_use_custom_libcxx",
"reactor-tokio",
]
include_icu_data = ["deno_core_icudata"]
reactor-tokio = []
snapshot_flags_eager_parse = []
unsafe_runtime_options = []
unsafe_use_unprotected_platform = []
uv_compat_export = []
v8_enable_pointer_compression = ["v8/v8_enable_pointer_compression"]
v8_enable_v8_checks = ["v8/v8_enable_v8_checks"]
v8_use_custom_libcxx = ["v8/use_custom_libcxx"]
[lib]
name = "deno_core"
path = "lib.rs"
[[example]]
name = "disable_ops"
path = "examples/disable_ops.rs"
[[example]]
name = "eval_js_value"
path = "examples/eval_js_value.rs"
[[example]]
name = "hello_world"
path = "examples/hello_world.rs"
[[example]]
name = "op2"
path = "examples/op2.rs"
[[example]]
name = "ts_module_loader"
path = "examples/ts_module_loader.rs"
[[bench]]
name = "arena"
path = "benches/infra/arena.rs"
harness = false
[[bench]]
name = "ops_async"
path = "benches/ops/async.rs"
harness = false
required-features = ["unsafe_runtime_options"]
[[bench]]
name = "ops_sync"
path = "benches/ops/sync.rs"
harness = false
required-features = ["unsafe_runtime_options"]
[[bench]]
name = "opset"
path = "benches/ops/opset.rs"
harness = false
[[bench]]
name = "snapshot"
path = "benches/snapshot/snapshot.rs"
harness = false
[dependencies.anyhow]
version = "1.0.57"
[dependencies.az]
version = "1.2.1"
[dependencies.base64]
version = "0.22.1"
[dependencies.bincode]
version = "1"
[dependencies.bit-set]
version = "0.8.0"
[dependencies.bit-vec]
version = "0.8.0"
[dependencies.boxed_error]
version = "0.2.3"
[dependencies.bytes]
version = "1.11.1"
[dependencies.capacity_builder]
version = "0.5.0"
[dependencies.cooked-waker]
version = "5"
[dependencies.deno_core_icudata]
version = "0.77.0"
optional = true
[dependencies.deno_error]
version = "=0.7.1"
features = [
"serde_json",
"serde",
"url",
"tokio",
]
[dependencies.deno_ops]
version = "0.282.0"
[dependencies.deno_path_util]
version = "=0.6.4"
[dependencies.deno_unsync]
version = "0.4.4"
features = ["tokio"]
default-features = false
[dependencies.futures]
version = "0.3.31"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.inventory]
version = "0.3.21"
[dependencies.libc]
version = "0.2.168"
[dependencies.num-bigint]
version = "0.4"
features = ["rand"]
[dependencies.parking_lot]
version = "0.12.0"
[dependencies.percent-encoding]
version = "2.3.0"
[dependencies.pin-project]
version = "1.0.11"
[dependencies.serde]
version = "1.0.149"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.85"
features = [
"float_roundtrip",
"preserve_order",
]
[dependencies.serde_v8]
version = "0.315.0"
[dependencies.smallvec]
version = "1.8"
[dependencies.sourcemap]
version = "9.1.2"
[dependencies.static_assertions]
version = "1"
[dependencies.sys_traits]
version = "0.1.28"
features = ["real"]
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
version = "1.47.1"
features = ["full"]
[dependencies.url]
version = "2.5"
features = [
"serde",
"expose_internals",
]
[dependencies.v8]
version = "149.4.0"
features = ["simdutf"]
default-features = false
[dependencies.wasm_dep_analyzer]
version = "0.4.0"
[dev-dependencies.bencher]
version = "0.1"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.deno_ast]
version = "=0.53.2"
features = ["transpiling"]
[dev-dependencies.paste]
version = "1.0"
[dev-dependencies.pretty_assertions]
version = "=1.4.1"
[dev-dependencies.rstest]
version = "0"
[dev-dependencies.twox-hash]
version = "2.1.0"
features = [
"std",
"xxhash64",
]
default-features = false
[dev-dependencies.unicycle]
version = "0.10.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59.0"
features = [
"Win32_Foundation",
"Win32_Media",
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_WindowsProgramming",
"Wdk",
"Wdk_System",
"Wdk_System_SystemInformation",
"Win32_Security",
"Win32_System_Pipes",
"Wdk_Storage_FileSystem",
"Win32_System_Registry",
"Win32_System_Kernel",
"Win32_System_Threading",
"Win32_UI",
"Win32_UI_Shell",
]