16 lines
398 B
TOML
16 lines
398 B
TOML
[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"
|