From c77777cb4dd5710e47be1061c3e0674e9a3e031a Mon Sep 17 00:00:00 2001 From: Rusty Pickle Date: Sun, 30 Nov 2025 18:20:06 +0600 Subject: [PATCH] Bump versions --- Cargo.lock | 14 +++++++------- Cargo.toml | 6 +++--- app/Cargo.toml | 2 +- db/Cargo.toml | 2 +- shared/Cargo.toml | 2 +- tui/Cargo.toml | 6 +++--- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index cb92454..2950983 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1934,7 +1934,7 @@ dependencies = [ [[package]] name = "rex-app" -version = "0.2.2" +version = "0.2.3" dependencies = [ "anyhow", "chrono", @@ -1950,7 +1950,7 @@ dependencies = [ [[package]] name = "rex-db" -version = "0.2.2" +version = "0.2.3" dependencies = [ "anyhow", "chrono", @@ -1964,14 +1964,14 @@ dependencies = [ [[package]] name = "rex-shared" -version = "0.2.0" +version = "0.2.3" dependencies = [ "chrono", ] [[package]] name = "rex-tui" -version = "0.2.2" +version = "0.2.3" dependencies = [ "anyhow", "atty", @@ -1994,9 +1994,9 @@ dependencies = [ [[package]] name = "rfd" -version = "0.15.4" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef2bee61e6cffa4635c72d7d81a84294e28f0930db0ddcb0f66d10244674ebed" +checksum = "a15ad77d9e70a92437d8f74c35d99b4e4691128df018833e99f90bcd36152672" dependencies = [ "ashpd", "block2", @@ -2013,7 +2013,7 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "windows-sys 0.59.0", + "windows-sys 0.60.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 8fe0b8b..ef38457 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,9 +4,9 @@ members = ["app", "db", "shared", "tui"] resolver = "2" [workspace.dependencies] -rex-shared = "0.2.0" -rex-db = "0.2.2" -rex-app = "0.2.2" +rex-shared = "0.2.3" +rex-db = "0.2.3" +rex-app = "0.2.3" chrono = "0.4.42" diesel = { version = "2.3.3", default-features = false, features = [ "returning_clauses_for_sqlite_3_35", diff --git a/app/Cargo.toml b/app/Cargo.toml index 95d054c..b3e5cb7 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rex-app" -version = "0.2.2" +version = "0.2.3" edition = "2024" description = """ Core functionality for Rex diff --git a/db/Cargo.toml b/db/Cargo.toml index 1a15bca..83c79ad 100644 --- a/db/Cargo.toml +++ b/db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rex-db" -version = "0.2.2" +version = "0.2.3" edition = "2024" description = """ Rex database models using diesel diff --git a/shared/Cargo.toml b/shared/Cargo.toml index bf1e42d..be5cbcf 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rex-shared" -version = "0.2.0" +version = "0.2.3" edition = "2024" description = """ Shared code for Rex diff --git a/tui/Cargo.toml b/tui/Cargo.toml index 874f63e..e386780 100644 --- a/tui/Cargo.toml +++ b/tui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rex-tui" -version = "0.2.2" +version = "0.2.3" edition = "2024" authors = ["TheRustyPickle "] readme = "../README.md" @@ -10,7 +10,7 @@ A TUI app for managing Incomes and Expenses homepage = "https://github.com/TheRustyPickle/Rex" repository = "https://github.com/TheRustyPickle/Rex" license = "MIT" -keywords = ["tui", "terminal", "budget", "ratatui", "money"] +keywords = ["tui", "terminal", "budget", "finance", "money"] categories = ["command-line-utilities"] exclude = ["logo.png", ".github", "typos.toml", "codecov.yml"] @@ -37,7 +37,7 @@ thousands = "0.2.0" semver = "1.0.27" ratatui = "0.29.0" serde_json = "1.0.145" -rfd = "0.15.4" +rfd = "0.16.0" [lints.clippy] too_many_arguments = { level = "allow" }