Skip to content

Commit 1e562bd

Browse files
RAprogrammdependabot[bot]github-actions[bot]
authored
refactor: apply cargo qual code quality rules (#353)
* refactor: apply cargo qual code quality rules - Remove 1400+ empty lines from function bodies - Move inline comments to doc blocks where appropriate - Simplify path imports using local use statements - Clean up test files by removing redundant step comments All tests pass, clippy clean. * chore(deps): bump the minor-and-patch group with 5 updates (#352) * chore: update CHANGELOG.md [skip ci] * chore(deps): bump the minor-and-patch group with 5 updates Bumps the minor-and-patch group with 5 updates: | Package | From | To | | --- | --- | --- | | [serde_json](https://github.com/serde-rs/json) | `1.0.147` | `1.0.148` | | [itoa](https://github.com/dtolnay/itoa) | `1.0.16` | `1.0.17` | | [ryu](https://github.com/dtolnay/ryu) | `1.0.21` | `1.0.22` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.103` | `1.0.104` | | [axum-test](https://github.com/JosephLenton/axum-test) | `18.4.1` | `18.5.0` | Updates `serde_json` from 1.0.147 to 1.0.148 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.147...v1.0.148) Updates `itoa` from 1.0.16 to 1.0.17 - [Release notes](https://github.com/dtolnay/itoa/releases) - [Commits](dtolnay/itoa@1.0.16...1.0.17) Updates `ryu` from 1.0.21 to 1.0.22 - [Release notes](https://github.com/dtolnay/ryu/releases) - [Commits](dtolnay/ryu@1.0.21...1.0.22) Updates `proc-macro2` from 1.0.103 to 1.0.104 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](dtolnay/proc-macro2@1.0.103...1.0.104) Updates `axum-test` from 18.4.1 to 18.5.0 - [Commits](https://github.com/JosephLenton/axum-test/commits) --- updated-dependencies: - dependency-name: serde_json dependency-version: 1.0.148 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: itoa dependency-version: 1.0.17 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: ryu dependency-version: 1.0.22 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: proc-macro2 dependency-version: 1.0.104 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: minor-and-patch - dependency-name: axum-test dependency-version: 18.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: minor-and-patch ... Signed-off-by: dependabot[bot] <support@github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: RA <70325462+RAprogramm@users.noreply.github.com> * up ver * up ver * up deps --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent da36e63 commit 1e562bd

File tree

105 files changed

+167
-1727
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+167
-1727
lines changed

Cargo.lock

Lines changed: 40 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[package]
66
name = "masterror"
7-
version = "0.27.0"
7+
version = "0.27.1"
88
rust-version = "1.92"
99
edition = "2024"
1010
license = "MIT"
@@ -93,7 +93,7 @@ masterror-derive = { version = "0.11" }
9393
masterror-template = { version = "0.4" }
9494

9595
[dependencies]
96-
masterror-derive = { version = "0.10" }
96+
masterror-derive = { version = "0.11" }
9797
masterror-template = { workspace = true }
9898
tracing = { version = "0.1", optional = true, default-features = false, features = [
9999
"attributes",

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ The build script keeps the full feature snippet below in sync with
159159

160160
~~~toml
161161
[dependencies]
162-
masterror = { version = "0.27.0", default-features = false }
162+
masterror = { version = "0.27.1", default-features = false }
163163
# or with features:
164-
# masterror = { version = "0.27.0", features = [
164+
# masterror = { version = "0.27.1", features = [
165165
# "std", "axum", "actix", "openapi",
166166
# "serde_json", "tracing", "metrics", "backtrace",
167167
# "colored", "sqlx", "sqlx-migrate", "reqwest",
@@ -640,7 +640,7 @@ Enable the `colored` feature for enhanced terminal output in local mode:
640640

641641
~~~toml
642642
[dependencies]
643-
masterror = { version = "0.27.0", features = ["colored"] }
643+
masterror = { version = "0.27.1", features = ["colored"] }
644644
~~~
645645

646646
With `colored` enabled, errors display with syntax highlighting:

0 commit comments

Comments
 (0)