mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
This change migrates all the documentation from dalek.rs to docs.rs hosted and fixed the backend documentation generation that was broken.
8 lines
348 B
Makefile
8 lines
348 B
Makefile
FEATURES := nightly simd_backend packed_simd
|
|
|
|
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
|
|
|