Compare commits

..
Author SHA1 Message Date
phoenix fe27dd7182 bump: textsender_models
textsender_models PR / Rustfmt (pull_request) Successful in 56s
textsender_models PR / Check (pull_request) Successful in 1m8s
textsender_models PR / Clippy (pull_request) Successful in 1m22s
Release Tagging / release (pull_request) Successful in 27s
2026-07-02 13:17:00 -04:00
phoenix b9f90cec08 cargo update
textsender_models PR / Clippy (pull_request) Successful in 1m26s
textsender_models PR / Check (pull_request) Successful in 1m5s
textsender_models PR / Rustfmt (pull_request) Successful in 1m9s
Release Tagging / release (pull_request) Successful in 30s
2026-07-02 13:14:42 -04:00
phoenix e111006b31 bump: textsender_models 2026-07-02 13:11:46 -04:00
phoenix 9ef15f5716 Code cleanup 2026-07-02 13:11:33 -04:00
phoenix 3d73a145e0 Changed type of function parameter 2026-07-02 13:06:04 -04:00
phoenix f3f861abd8 Changed type of function parameter 2026-07-02 13:04:14 -04:00
phoenix 2e1868999f Warning fix 2026-07-02 13:03:28 -04:00
phoenix d873cc9fdf Refactored code
textsender_models PR / Rustfmt (pull_request) Successful in 50s
textsender_models PR / Clippy (pull_request) Failing after 1m4s
Release Tagging / release (pull_request) Successful in 35s
textsender_models PR / Check (pull_request) Successful in 1m27s
2026-07-02 13:01:44 -04:00
phoenix 2a8742cc4a Removing unwrap
textsender_models PR / Rustfmt (pull_request) Successful in 58s
textsender_models PR / Check (pull_request) Successful in 1m16s
textsender_models PR / Clippy (pull_request) Successful in 1m21s
Release Tagging / release (pull_request) Successful in 36s
2026-07-02 12:36:49 -04:00
phoenix 0749e6419f Adding test 2026-07-02 12:32:29 -04:00
5 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.96.1
toolchain: 1.96
- uses: Swatinem/rust-cache@v2
- run: cargo check
@@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.96.1
toolchain: 1.96
- uses: Swatinem/rust-cache@v2
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
@@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.96.1
toolchain: 1.96
- uses: Swatinem/rust-cache@v2
- run: rustup component add clippy
- run: cargo clippy -- -D warnings
+2 -2
View File
@@ -13,14 +13,14 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v5
with:
fetch-depth: 0 # Important for git describe --tags
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.96.1
toolchain: 1.96
components: cargo
- name: Extract Version from Cargo.toml
+5 -5
View File
@@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.96.1
toolchain: 1.96
- uses: Swatinem/rust-cache@v2
- run: cargo check
@@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.96.1
toolchain: 1.96
- uses: Swatinem/rust-cache@v2
- run: cargo test
@@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.96.1
toolchain: 1.96
- uses: Swatinem/rust-cache@v2
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
@@ -51,7 +51,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.96.1
toolchain: 1.96
- uses: Swatinem/rust-cache@v2
- run: rustup component add clippy
- run: cargo clippy -- -D warnings
@@ -63,6 +63,6 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.96.1
toolchain: 1.96
- uses: Swatinem/rust-cache@v2
- run: cargo build
Generated
+3 -3
View File
@@ -97,9 +97,9 @@ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
[[package]]
name = "cc"
version = "1.2.66"
version = "1.2.65"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
dependencies = [
"find-msvc-tools",
"shlex",
@@ -1453,7 +1453,7 @@ dependencies = [
[[package]]
name = "textsender_models"
version = "0.5.1"
version = "0.5.0"
dependencies = [
"const_format",
"dotenvy",
+2 -2
View File
@@ -1,8 +1,8 @@
[package]
name = "textsender_models"
version = "0.5.1"
version = "0.5.0"
edition = "2024"
rust-version = "1.96.1"
rust-version = "1.96"
description = "Models used for the textsender project"
[dependencies]