First commit

This commit is contained in:
2025-05-12 10:58:23 +02:00
commit 244eb6e099
6 changed files with 210 additions and 0 deletions

16
train-cli/Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "train-cli"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
postgres = { version = "0.19.10", features = ["with-chrono-0_4"] }
sqlx = { version = "0.8.5", features = ["rust_decimal"] }
clap = { version = "4.5.37", features = ["derive"] }
whoami = "1.6.0"
rust_decimal = { version = "1.37.1", features = ["db-postgres"] }
chrono = "0.4.41"