From a616174f796bf55879edb96ccb4749eb5cad6c24 Mon Sep 17 00:00:00 2001 From: mehbark <terezi@pyrope.net> Date: Wed, 26 Mar 2025 00:26:12 -0400 Subject: [PATCH] chore: gitignore and more cargo metadata --- .gitignore | 4 ++++ Cargo.toml | 6 ++++++ 2 files changed, 10 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..37556fc --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +/target +data/* + +*.sqlite diff --git a/Cargo.toml b/Cargo.toml index 93ca687..9e060c1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,6 +4,12 @@ version = "0.1.0" edition = "2024" authors = ["mehbark <terezi@pyrope.net>"] description = "turn https://smogon.com/stats/ chaos json files into https://sqlite.org databases" +license = "MIT OR Apache-2.0" +repository = "https://g.pyrope.net/smogon-stats" +# why oh why did i not capitalize +readme = "readme.md" +keywords = ["pokemon", "sqlite", "statistics", "cli"] +categories = ["command-line-utilities"] [dependencies] clap = { version = "4.5.32", features = ["derive"] }