Recount-TUI/Cargo.toml

14 lines
381 B
TOML
Raw 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]
crossterm = "0.26.1"
2023-05-31 18:00:17 -07:00
ratatui = "0.21.0"
2023-08-07 21:01:13 -07:00
simplelog = "0.12.1"
sqlx = { version = "0.6.3", features = ["postgres", "runtime-tokio-native-tls", "sqlite"] }
2023-08-07 21:01:13 -07:00
tokio = { version = "1.28.2", features = ["full"] }