Initial commit

This commit is contained in:
Andrew Phillips
2023-07-25 17:33:50 -03:00
commit b9bf5a831e
6 changed files with 1089 additions and 0 deletions

15
Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "keep-rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.3.10", features = ["derive", "env"] }
lazy_static = "1.4.0"
log = "0.4.19"
regex = "1.9.1"
rusqlite = { version = "0.29.0", features = ["bundled"] }
rusqlite_migration = "1.0.2"
stderrlog = "0.5.4"