@@ -29,9 +29,9 @@ Stable categories, conservative HTTP mapping, no `unsafe`.
2929
3030~~~ toml
3131[dependencies ]
32- masterror = { version = " 0.10.8 " , default-features = false }
32+ masterror = { version = " 0.11.0 " , default-features = false }
3333# or with features:
34- # masterror = { version = "0.10.8 ", features = [
34+ # masterror = { version = "0.11.0 ", features = [
3535# "axum", "actix", "openapi", "serde_json",
3636# "sqlx", "sqlx-migrate", "reqwest", "redis",
3737# "validator", "config", "tokio", "multipart",
@@ -66,10 +66,11 @@ masterror = { version = "0.10.8", default-features = false }
6666~~~ toml
6767[dependencies ]
6868# lean core
69- masterror = { version = " 0.10.8 " , default-features = false }
69+ masterror = { version = " 0.11.0 " , default-features = false }
7070
7171# with Axum/Actix + JSON + integrations
72- # masterror = { version = "0.10.8", features = [
72+ # masterror = { version = "0.11.0", features = [
73+
7374# "axum", "actix", "openapi", "serde_json",
7475# "sqlx", "sqlx-migrate", "reqwest", "redis",
7576# "validator", "config", "tokio", "multipart",
@@ -378,7 +379,7 @@ diagnostics.
378379
379380| Specifier | ` core::fmt ` trait | Example output | Notes |
380381| ------------------| ----------------------------| ------------------------| -------|
381- | _ default _ | ` core::fmt::Display ` | ` value ` | User-facing strings; ` # ` has no effect. |
382+ | * default * | ` core::fmt::Display ` | ` value ` | User-facing strings; ` # ` has no effect. |
382383| ` :? ` / ` :#? ` | ` core::fmt::Debug ` | ` Struct { .. } ` / multi-line | Mirrors ` Debug ` ; ` # ` pretty-prints structs. |
383384| ` :x ` / ` :#x ` | ` core::fmt::LowerHex ` | ` 0x2a ` | Hexadecimal; ` # ` prepends ` 0x ` . |
384385| ` :X ` / ` :#X ` | ` core::fmt::UpperHex ` | ` 0x2A ` | Uppercase hex; ` # ` prepends ` 0x ` . |
@@ -578,6 +579,8 @@ assert_eq!(resp.status, 401);
578579
579580</details >
580581
582+ </details >
583+
581584<details >
582585 <summary ><b >Feature flags</b ></summary >
583586
@@ -623,13 +626,13 @@ assert_eq!(resp.status, 401);
623626Minimal core:
624627
625628~~~ toml
626- masterror = { version = " 0.10.8 " , default-features = false }
629+ masterror = { version = " 0.11.0 " , default-features = false }
627630~~~
628631
629632API (Axum + JSON + deps):
630633
631634~~~ toml
632- masterror = { version = " 0.10.8 " , features = [
635+ masterror = { version = " 0.11.0 " , features = [
633636 " axum" , " serde_json" , " openapi" ,
634637 " sqlx" , " reqwest" , " redis" , " validator" , " config" , " tokio"
635638] }
@@ -638,7 +641,7 @@ masterror = { version = "0.10.8", features = [
638641API (Actix + JSON + deps):
639642
640643~~~ toml
641- masterror = { version = " 0.10.8 " , features = [
644+ masterror = { version = " 0.11.0 " , features = [
642645 " actix" , " serde_json" , " openapi" ,
643646 " sqlx" , " reqwest" , " redis" , " validator" , " config" , " tokio"
644647] }
@@ -709,4 +712,3 @@ MSRV = 1.90 (may raise in minor, never in patch).
709712Apache-2.0 OR MIT, at your option.
710713
711714</details >
712-
0 commit comments