+readme +cargo project

This commit is contained in:
nuru 2024-07-10 11:49:47 +00:00
commit 9b512ef48f
Signed by: nuru
GPG Key ID: FA028981DC86855A
5 changed files with 30 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "koe"
version = "0.1.0"

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "koe"
version = "0.1.0"
edition = "2021"
[dependencies]

13
README.md Normal file
View File

@ -0,0 +1,13 @@
# Koe is a CLI for listening to music.
> Koe (こえ, 声), voice
Koe aims to frictionlessly
1. Play songs/albums
2. Manage playlists
3. Download songs
All in a colourful CLI/TUI
I'm developing this project to strengthen my grip on Rust and TUI development, along with networking and real-world programming.

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}