mirror of
https://github.com/saymrwulf/anza-cryptography-source.git
synced 2026-09-05 20:30:51 +00:00
12 lines
309 B
Makefile
12 lines
309 B
Makefile
|
|
FEATURES := serde rand_core digest legacy_compatibility
|
||
|
|
|
||
|
|
export RUSTDOCFLAGS := \
|
||
|
|
--cfg docsrs \
|
||
|
|
--html-in-header docs/assets/rustdoc-include-katex-header.html
|
||
|
|
|
||
|
|
doc:
|
||
|
|
cargo +nightly rustdoc --features "$(FEATURES)"
|
||
|
|
|
||
|
|
doc-internal:
|
||
|
|
cargo +nightly rustdoc --features "$(FEATURES)" -- --document-private-items
|