mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
As proposed in #442 this makes `digest` an optional feature that is not covered by the SemVer public API stability guarantees. Co-authored-by: Michael Rosenberg <michael@mrosenberg.pub>
8 lines
351 B
Makefile
8 lines
351 B
Makefile
FEATURES := simd_backend serde rand_core digest
|
|
|
|
doc:
|
|
cargo +nightly rustdoc --features "$(FEATURES)" -- --html-in-header docs/assets/rustdoc-include-katex-header.html --cfg docsrs
|
|
|
|
doc-internal:
|
|
cargo +nightly rustdoc --features "$(FEATURES)" -- --html-in-header docs/assets/rustdoc-include-katex-header.html --document-private-items --cfg docsrs
|
|
|