Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aramrw/serifu-finder
Find Serifus in Subtitle Files
https://github.com/aramrw/serifu-finder
Last synced: about 2 months ago
JSON representation
Find Serifus in Subtitle Files
- Host: GitHub
- URL: https://github.com/aramrw/serifu-finder
- Owner: aramrw
- Created: 2024-05-14T02:02:03.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-08-24T01:14:45.000Z (5 months ago)
- Last Synced: 2024-08-24T02:27:33.504Z (5 months ago)
- Language: Rust
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Simple Async template
This simple async template will create the following project structure:
```text
src/
├── app.rs -> holds the state and application logic
├── event.rs -> handles the terminal events (key press, mouse click, resize, etc.)
├── handler.rs -> handles the key press events and updates the application
├── lib.rs -> module definitions
├── main.rs -> entry-point
├── tui.rs -> initializes/exits the terminal interface
└── ui.rs -> renders the widgets / UI
```This is identical to the [simple] template but has `async` events out of the box with `tokio` and
`crossterm`'s `EventStream`.[simple](../simple/)