17 lines
459 B
TOML
17 lines
459 B
TOML
[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.12", features = ["with-chrono-0_4"] }
|
|
sqlx = { version = "0.8.6", features = ["rust_decimal"] }
|
|
clap = { version = "4.5.50", features = ["derive"] }
|
|
whoami = "1.6.1"
|
|
rust_decimal = { version = "1.39.0", features = ["db-postgres"] }
|
|
chrono = "0.4.42"
|
|
|
|
|