-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove tag, add support of all hash functions from
digest
- Loading branch information
Showing
9 changed files
with
259 additions
and
99 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,16 @@ | ||
.PHONY: docs docs-open | ||
|
||
docs: | ||
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --no-deps --all-features | ||
|
||
docs-open: | ||
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --no-deps --all-features --open | ||
|
||
docs-private: | ||
RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --no-deps --all-features --document-private-items | ||
|
||
readme: | ||
cargo readme -i src/lib.rs -r udigest/ -t ../docs/readme.tpl \ | ||
| perl -ne 's/\[(.+?)\]\((?!https).+?\)/\1/g; print;' \ | ||
| perl -ne 's/(?<!#)\[(.+?)\](?!\()/\1/g; print;' \ | ||
> README.md | ||
cargo readme -i src/lib.rs -r udigest-derive/ -t ../docs/readme.tpl \ | ||
> udigest-derive/README.md | ||
(cd generic-ec; cargo rdme -r ../README.md) | ||
(cd generic-ec-core; cargo rdme -r README.md) | ||
(cd generic-ec-curves; cargo rdme -r README.md) | ||
(cd generic-ec-zkp; cargo rdme -r README.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
words: | ||
- digestable | ||
- udigest | ||
- VecDeque | ||
- bytestring | ||
- bytestrings | ||
- biglen | ||
- sublist | ||
- docsrs | ||
- concated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.