Commit de398b0
committed
fix: enable serde alloc feature for no_std builds
#[serde(flatten)] on CommonFields requires serde's alloc feature,
which was never activated for the no_std (embassy-rt) build path.
The std feature enables serde/std (which implies alloc), masking
the issue for default builds. Also add Box imports needed for the
boxed error variants in no_std context.1 parent a9c68c8 commit de398b0
File tree
3 files changed
+3
-1
lines changed- src
- asynch/clients
- models/results
3 files changed
+3
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
1 | 2 | | |
2 | 3 | | |
3 | 4 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
43 | 43 | | |
44 | 44 | | |
45 | 45 | | |
| 46 | + | |
46 | 47 | | |
47 | 48 | | |
48 | 49 | | |
| |||
0 commit comments