chore: gitignore and more cargo metadata

This commit is contained in:
mehbark 2025-03-26 00:26:12 -04:00
parent 773eaeea13
commit a616174f79
2 changed files with 10 additions and 0 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
/target
data/*
*.sqlite

View file

@ -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"] }