Rename project to skim

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Shautvast 2026-02-17 21:33:37 +01:00
parent 2aacac82be
commit 328a5fa5d2
3 changed files with 16 additions and 16 deletions

26
Cargo.lock generated
View file

@ -518,19 +518,6 @@ version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "hello-ratatui"
version = "0.1.0"
dependencies = [
"chrono",
"crossterm",
"imap",
"native-tls",
"ratatui",
"serde",
"toml",
]
[[package]]
name = "hex"
version = "0.4.3"
@ -1436,6 +1423,19 @@ version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
[[package]]
name = "skim"
version = "0.1.0"
dependencies = [
"chrono",
"crossterm",
"imap",
"native-tls",
"ratatui",
"serde",
"toml",
]
[[package]]
name = "smallvec"
version = "1.15.1"

View file

@ -1,5 +1,5 @@
[package]
name = "hello-ratatui"
name = "skim"
version = "0.1.0"
edition = "2024"

View file

@ -4,7 +4,7 @@ use crossterm::{
execute,
terminal::{disable_raw_mode, enable_raw_mode, EnterAlternateScreen, LeaveAlternateScreen},
};
use hello_ratatui::config::Config;
use skim::config::Config;
use ratatui::{
backend::CrosstermBackend,
Terminal,
@ -21,7 +21,7 @@ fn main() -> io::Result<()> {
let backend = CrosstermBackend::new(stdout);
let mut terminal = Terminal::new(backend)?;
hello_ratatui::main(&config, &mut terminal)?;
skim::main(&config, &mut terminal)?;
// --- Restore terminal ---
disable_raw_mode()?;