Reduce tearing when redrawing

This commit is contained in:
Joscha 2023-05-10 19:43:51 +02:00
parent e6585286e3
commit dc0de4354f
3 changed files with 3 additions and 2 deletions

View file

@ -29,6 +29,7 @@ Procedure when bumping the version number:
- Redesigned F1 popup. It can now be toggled with F1 like the F12 log - Redesigned F1 popup. It can now be toggled with F1 like the F12 log
- The F12 log can now be closed with escape - The F12 log can now be closed with escape
- Some more small UI fixes and adjustments to the new key binding system - Some more small UI fixes and adjustments to the new key binding system
- Reduced tearing when redrawing screen
- Split up project into sub-crates - Split up project into sub-crates
- Simplified flake dependencies - Simplified flake dependencies

2
Cargo.lock generated
View file

@ -1397,7 +1397,7 @@ dependencies = [
[[package]] [[package]]
name = "toss" name = "toss"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/Garmelon/toss.git?rev=f005ec10fe1b6034c50f3a4ef24dd44d3e6d5593#f005ec10fe1b6034c50f3a4ef24dd44d3e6d5593" source = "git+https://github.com/Garmelon/toss.git?rev=6eb853e3136dd320272bd67e2957774869c21e4b#6eb853e3136dd320272bd67e2957774869c21e4b"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"crossterm", "crossterm",

View file

@ -15,7 +15,7 @@ thiserror = "1.0.40"
[workspace.dependencies.toss] [workspace.dependencies.toss]
git = "https://github.com/Garmelon/toss.git" git = "https://github.com/Garmelon/toss.git"
rev = "f005ec10fe1b6034c50f3a4ef24dd44d3e6d5593" rev = "6eb853e3136dd320272bd67e2957774869c21e4b"
[profile.dev.package."*"] [profile.dev.package."*"]
opt-level = 3 opt-level = 3