forest-filecoin 0.33.1

Rust Filecoin implementation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Snapshot testing saves a copy of an expected output inside a repo, and asserts
that the System Under Test always produces a matching copy.

[`insta`](https://docs.rs/insta), the snapshot testing library we use stores
snapshots in this folder.

This allows us to regression-test and review changes to our autogenerated
OpenRPC definitions.

If you're making changes to OpenRPC files, review is easier with

```console
$ cargo install cargo-insta
...
$ cargo insta review
```

See also <https://insta.rs/docs/quickstart/>.