Recount-TUI/Cargo.toml

21 lines
540 B
TOML
Raw Permalink Normal View History

2023-05-28 22:18:30 -07:00
[package]
name = "recount"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-08-17 22:24:12 -07:00
chrono = "0.4.26"
2023-08-09 22:39:00 -07:00
crossbeam-channel = "0.5.8"
2023-05-28 22:18:30 -07:00
crossterm = "0.26.1"
2023-08-07 22:27:27 -07:00
futures = "0.3.28"
log = "0.4.19"
2023-05-31 18:00:17 -07:00
ratatui = "0.21.0"
2023-08-09 22:39:00 -07:00
rust_decimal = "1.31.0"
2023-08-07 21:01:13 -07:00
simplelog = "0.12.1"
2023-08-09 22:39:00 -07:00
sqlx = { version = "0.6.3", features = ["postgres", "runtime-tokio-native-tls", "sqlite", "decimal", "time"] }
2023-08-17 22:24:12 -07:00
substring = "1.4.5"
2023-08-09 22:39:00 -07:00
time = "0.3.25"
2023-08-07 21:01:13 -07:00
tokio = { version = "1.28.2", features = ["full"] }