cargo publish --dry-run
cargo publish
# install llvm-cov
cargo +stable install cargo-llvm-cov --locked
# run test with coverage
cargo llvm-cov --html
# open coverage report
open target/llvm-cov/html/index.html
cargo test
# show the output of the test
cargo test -- --show-output
# run a specific test
cargo test <test_name>
- better separation of options -
VerbosityFields
and OptionsFields
- Do
.
by default instead of doing nothing
- Bump to version
1.0.6
- Add tests
- Use
as_encoded_bytes
instead of as_bytes
- Bump to version
1.0.5
- Create a
lib.rs
file
- Add tests
- Bump to version
1.0.4