ktype 0.3.0

A terminal-native typing test inspired by Monkeytype — fast, minimal, and offline-first.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::time::Duration;

#[derive(Debug, Clone, PartialEq)]
pub enum Msg {
    Tick(Duration),
    Char(char),
    Backspace,
    Space,
    Tab,
    ShiftTab,
    Left,
    Right,
    Esc,
}