File: downgrade-termion-1.patch

package info (click to toggle)
rust-kmon 1.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 364 kB
  • sloc: makefile: 4
file content (18 lines) | stat: -rw-r--r-- 447 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -82,3 +82,3 @@
 [dependencies.termion]
-version = "3.0.0"
+version = "1"
 
--- a/src/main.rs
+++ b/src/main.rs
@@ -10,3 +10,2 @@
 use termion::raw::IntoRawMode;
-use termion::screen::IntoAlternateScreen;
 
@@ -29,3 +28,3 @@
 		util::setup_panic_hook()?;
-		let stdout = stdout().into_raw_mode()?.into_alternate_screen()?;
+		let stdout = stdout().into_raw_mode()?;
 		let stdout = MouseTerminal::from(stdout);