mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-03 20:13:48 +00:00
11 lines
309 B
Makefile
11 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
|