- Enhanced CLI output with table formatting for better readability of account and transaction data - Added new commands to list accounts and view their sync status - Added new commands to inspect transaction information and cache status - Cleaned up internal code by removing unused trait methods and implementations - Updated documentation with examples of new CLI commands This improves the user experience with clearer CLI output and new inspection capabilities while maintaining code quality.
36 lines
971 B
TOML
36 lines
971 B
TOML
[workspace]
|
|
members = [
|
|
"banks2ff",
|
|
"firefly-client",
|
|
"gocardless-client",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1.34", features = ["full"] }
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
rust_decimal = { version = "1.33", features = ["serde-float"] }
|
|
async-trait = "0.1"
|
|
dotenvy = "0.15"
|
|
clap = { version = "4.4", features = ["derive", "env"] }
|
|
reqwest = { version = "0.11", default-features = false, features = ["json", "multipart", "rustls-tls"] }
|
|
url = "2.5"
|
|
wiremock = "0.5"
|
|
tokio-test = "0.4"
|
|
mockall = "0.11"
|
|
reqwest-middleware = "0.2"
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
bytes = "1.0"
|
|
comfy-table = "7.1"
|