chore: gitignore and more cargo metadata
This commit is contained in:
parent
773eaeea13
commit
a616174f79
2 changed files with 10 additions and 0 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
/target
|
||||||
|
data/*
|
||||||
|
|
||||||
|
*.sqlite
|
|
@ -4,6 +4,12 @@ version = "0.1.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
authors = ["mehbark <terezi@pyrope.net>"]
|
authors = ["mehbark <terezi@pyrope.net>"]
|
||||||
description = "turn https://smogon.com/stats/ chaos json files into https://sqlite.org databases"
|
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]
|
[dependencies]
|
||||||
clap = { version = "4.5.32", features = ["derive"] }
|
clap = { version = "4.5.32", features = ["derive"] }
|
||||||
|
|
Loading…
Reference in a new issue