From 19a556877253d395bc1e45b8c3bd20d04d8f7e84 Mon Sep 17 00:00:00 2001 From: Colby Thomas Date: Mon, 25 Apr 2022 03:14:25 -0600 Subject: [PATCH] docs: readme updates --- .gitignore | 1 + Cargo.toml | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index ea8c4bf..4b1d890 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /target +*.log \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index bbe6b07..7b61a9f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,15 @@ [package] name = "thokr" +description = "a sleek typing tui written in rust" version = "0.0.1" +readme = "README.md" +repository = "https://github.com/coloradocolby/thokr.git" +homepage = "https://github.com/coloradocolby/thokr" +license = "MIT" +authors = ["Colby Thomas "] edition = "2021" +exclude = ["assets/*", ".github", "*.log", "Dockerfile"] +keywords = ["tui", "terminal", "typing"] [dependencies] tui = { version = "0.17", default-features = false, features = ['crossterm'] }