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-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-07 21:01:13 -07:00
|
|
|
simplelog = "0.12.1"
|
2023-05-31 21:13:36 -07:00
|
|
|
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"] }
|