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>
- Fix typos
- Bump to version
1.0.10
- Cleaner code (function removed)
- Bump to version
1.0.9
- Clippy the code
- Bump to version
1.0.7
- Change syntaxic sugar
- Change the
Vec<u8>
->String
->char
conversion to [u8; 4]
->u32
-> char
- Bump to version
1.0.8
- 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