From 593f4c420a8d25dba0c8db8e8427f4e1c86eeb80 Mon Sep 17 00:00:00 2001 From: ardocrat Date: Thu, 16 Apr 2026 22:50:53 +0300 Subject: [PATCH] build: fix missing deps at Cargo.lock --- Cargo.lock | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 74db18b7..2b8bc7c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -487,6 +487,8 @@ dependencies = [ "lazy_static", "libc", "log", + "maplit", + "pancurses", "signal-hook", "unicode-segmentation", "unicode-width", @@ -1759,6 +1761,12 @@ dependencies = [ "linked-hash-map", ] +[[package]] +name = "maplit" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d" + [[package]] name = "memchr" version = "2.7.4" @@ -1805,6 +1813,17 @@ dependencies = [ "windows-sys 0.52.0", ] +[[package]] +name = "ncurses" +version = "5.101.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e2c5d34d72657dc4b638a1c25d40aae81e4f1c699062f72f467237920752032" +dependencies = [ + "cc", + "libc", + "pkg-config", +] + [[package]] name = "nix" version = "0.29.0" @@ -2010,6 +2029,19 @@ dependencies = [ "winapi", ] +[[package]] +name = "pancurses" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0352975c36cbacb9ee99bfb709b9db818bed43af57751797f8633649759d13db" +dependencies = [ + "libc", + "log", + "ncurses", + "pdcurses-sys", + "winreg", +] + [[package]] name = "parking_lot" version = "0.10.2" @@ -2081,6 +2113,16 @@ dependencies = [ "sha2", ] +[[package]] +name = "pdcurses-sys" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "084dd22796ff60f1225d4eb6329f33afaf4c85419d51d440ab6b8c6f4529166b" +dependencies = [ + "cc", + "libc", +] + [[package]] name = "percent-encoding" version = "2.3.2" @@ -3364,6 +3406,15 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +[[package]] +name = "winreg" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a27a759395c1195c4cc5cda607ef6f8f6498f64e78f7900f5de0a127a424704a" +dependencies = [ + "winapi", +] + [[package]] name = "writeable" version = "0.6.2"