diff options
author | Nathan Whitaker <17734409+nathanwhit@users.noreply.github.com> | 2024-09-27 12:35:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-27 12:35:37 -0700 |
commit | fbddd5a2ebfb11dd376a751e9fc4cf09a6286ada (patch) | |
tree | 75c13ee9f26f61fe8c1d6f80df2580a523177c1b /runtime/Cargo.toml | |
parent | a8d1ab52761516b7f9b6069d6e433254794ed48c (diff) |
fix(node): Pass NPM_PROCESS_STATE to subprocesses via temp file instead of env var (#25896)
Fixes https://github.com/denoland/deno/issues/25401. Fixes
https://github.com/denoland/deno/issues/25841. Fixes
https://github.com/denoland/deno/issues/25891.
Diffstat (limited to 'runtime/Cargo.toml')
-rw-r--r-- | runtime/Cargo.toml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 6d24781cf..ea2978c49 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -118,6 +118,7 @@ rustyline = { workspace = true, features = ["custom-bindings"] } serde.workspace = true signal-hook = "0.3.17" signal-hook-registry = "1.4.0" +tempfile.workspace = true tokio.workspace = true tokio-metrics.workspace = true twox-hash.workspace = true |