howardwu / wagyu

A Rust library for generating cryptocurrency wallets
https://wagyu.dev
Apache License 2.0
608 stars 108 forks source link

Add `no_std` for most of the packages #260

Closed weikengchen closed 3 years ago

weikengchen commented 3 years ago

This slightly large PR does two things:

(1) makes all packages except the main one wagyu/ no_std. (2) applies a pass of cargo fmt

It is unlikely that we can make wagyu/ no_std because it is naturally a command-line interface that uses println!, which is part of the std.

This should close #44.

howardwu commented 3 years ago

LGTM, thanks @weikengchen!