We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cargo check --examples
1 parent df33d8f commit bd7ba12Copy full SHA for bd7ba12
.github/workflows/rust.yml
@@ -82,7 +82,9 @@ jobs:
82
steps:
83
- uses: actions/checkout@v4
84
- name: run cargo doc
85
- run: RUSTDOCFLAGS="-D warnings" cargo doc --features derive,unstable__schema
+ run: |
86
+ RUSTDOCFLAGS="-D warnings" cargo doc --features derive,unstable__schema
87
+ cargo check --examples
88
89
release-plz:
90
runs-on: ubuntu-latest
borsh/examples/serde_json_value.rs
@@ -2,7 +2,7 @@ use std::collections::HashMap;
2
3
use borsh::{BorshDeserialize, BorshSerialize};
4
5
-mod serde_json_value {
+od serde_json_value {
6
pub use de::deserialize_value;
7
pub use ser::serialize_value;
8
mod ser {
0 commit comments