Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 17 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,28 @@ members = ["app", "db", "shared", "tui"]
resolver = "2"

[workspace.dependencies]
rex-shared = "0.2.6"
rex-db = "0.2.6"
rex-app = "0.2.6"
anyhow = "1.0.102"
chrono = "0.4.44"
diesel = { version = "2.3.7", default-features = false, features = [
diesel = {
version = "2.3.7",
default-features = false,
features = [
"chrono",
"returning_clauses_for_sqlite_3_35",
"sqlite",
"chrono",
] }
anyhow = "1.0.102"
strum = "0.28"
]
}
rex-app = "0.2.7"
rex-db = "0.2.7"
rex-shared = "0.2.7"
strum = "0.28.0"
strum_macros = "0.28"

[patch.crates-io]
rex-app = { path = "app" }
rex-db = { path = "db" }
rex-shared = { path = "shared" }

# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"

[patch.crates-io]
rex-shared = { path = "shared" }
rex-db = { path = "db" }
rex-app = { path = "app" }
10 changes: 5 additions & 5 deletions app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rex-app"
version = "0.2.6"
version = "0.2.7"
edition = "2024"
description = """
Core functionality for Rex
Expand All @@ -10,14 +10,14 @@ repository = "https://github.com/TheRustyPickle/Rex"
license = "MIT"

[dependencies]
rex-db.workspace = true
rex-shared.workspace = true
chrono.workspace = true
anyhow.workspace = true
chrono.workspace = true
diesel.workspace = true
rex-db.workspace = true
rex-shared.workspace = true
strsim = "0.11.1"
strum.workspace = true
strum_macros.workspace = true
strsim = "0.11.1"
thiserror = "2.0.17"

[lints.clippy]
Expand Down
12 changes: 6 additions & 6 deletions db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rex-db"
version = "0.2.6"
version = "0.2.7"
edition = "2024"
description = """
Rex database models using diesel
Expand All @@ -10,11 +10,11 @@ repository = "https://github.com/TheRustyPickle/Rex"
license = "MIT"

[dependencies]
rex-shared.workspace = true
diesel.workspace = true
chrono.workspace = true
anyhow.workspace = true
strum.workspace = true
strum_macros.workspace = true
chrono.workspace = true
diesel.workspace = true
diesel_migrations = "2.3.1"
libsqlite3-sys = { version = "0.35.0", features = ["bundled"] }
rex-shared.workspace = true
strum.workspace = true
strum_macros.workspace = true
8 changes: 4 additions & 4 deletions dist-workspace.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ ci = "github"
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Whether dist should create a Github Release or use an existing draft
create-release = false
Expand Down
3 changes: 1 addition & 2 deletions shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rex-shared"
version = "0.2.6"
version = "0.2.7"
edition = "2024"
description = """
Shared code for Rex
Expand All @@ -11,4 +11,3 @@ license = "MIT"

[dependencies]
chrono.workspace = true

2 changes: 1 addition & 1 deletion tui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rex-tui"
version = "0.2.6"
version = "0.2.7"
edition = "2024"
description = """
A TUI app for managing Incomes and Expenses
Expand Down
Loading