summaryrefslogtreecommitdiff
path: root/cli/Cargo.toml
diff options
context:
space:
mode:
authorDivy Srivastava <dj.srivastava23@gmail.com>2024-01-02 09:36:05 +0530
committerGitHub <noreply@github.com>2024-01-02 09:36:05 +0530
commitb21462355a61d69bedf15ae51304719f6014b8df (patch)
treef58b2e00551d9d2981882520d0f64f7e8cf73722 /cli/Cargo.toml
parent96b581bdd2bedb31aa51c0a992686f27ed1a1f10 (diff)
Revert "fix(runtime): Make native modal keyboard interaction consistent with browsers" (#21739)
Reverts denoland/deno#18453 Fixes https://github.com/denoland/deno/issues/21602 https://github.com/denoland/deno/issues/21631 https://github.com/denoland/deno/issues/21641 Reasons for revert: - alert() and confirm() swallowed ^C with raw mode. - prompt() did not re-raise the interrupt signal from rustyline. - Default 'Y' on confirm() is a bad default and breaking change. cc @lionel-rowe
Diffstat (limited to 'cli/Cargo.toml')
-rw-r--r--cli/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index ad9974070..dc9bd1228 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -118,7 +118,7 @@ quick-junit = "^0.3.5"
rand = { workspace = true, features = ["small_rng"] }
regex.workspace = true
ring.workspace = true
-rustyline.workspace = true
+rustyline = { version = "=13.0.0", default-features = false, features = ["custom-bindings", "with-file-history"] }
rustyline-derive = "=0.7.0"
serde.workspace = true
serde_repr.workspace = true