Skip to content

Commit

Permalink
Expose serde from fvm_ipld_encoding (#662)
Browse files Browse the repository at this point in the history
  • Loading branch information
tchataigner authored Jul 21, 2022
1 parent cfbb6b1 commit 158309f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions ipld/encoding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Changes to the FVM's shared encoding utilities.

## [Unreleased]

Publicly use `serde` to expose it when developing actors.

## 0.2.2 [2022-06-13]

Change the hash length assert into an actual check, just in case.
Expand Down
2 changes: 1 addition & 1 deletion ipld/encoding/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mod errors;
mod vec;
use std::io;

pub use serde::{de, ser};
pub use serde::{self, de, ser};
pub use serde_bytes;

pub use self::bytes::*;
Expand Down

0 comments on commit 158309f

Please sign in to comment.