[package]
edition = "2024"
rust-version = "1.89"
name = "pctx_executor"
version = "0.1.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "TypeScript execution environment orchestration"
readme = false
keywords = [
"typescript",
"executor",
"pctx",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/portofcontext/pctx"
resolver = "2"
[lib]
name = "pctx_executor"
path = "src/lib.rs"
[dependencies.deno_core]
version = "0.381"
features = ["include_icu_data"]
[dependencies.deno_resolver]
version = "0.58"
[dependencies.futures]
version = "0.3"
[dependencies.node_resolver]
version = "0.65"
[dependencies.pctx_code_execution_runtime]
version = "^0.1.3"
[dependencies.pctx_config]
version = "^0.1.3"
[dependencies.pctx_deno_transpiler]
version = "^0.1.1"
[dependencies.pctx_type_check_runtime]
version = "^0.1.1"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sys_traits]
version = "0.1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.rustls]
version = "0.23"
features = ["aws-lc-rs"]
default-features = false
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
]
[dev-dependencies.url]
version = "2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_System_SystemInformation",
"Win32_Networking_WinSock",
]
[lints.clippy]
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
match_same_arms = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
similar_names = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unreachable_pub = "warn"