mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
12 lines
346 B
Makefile
12 lines
346 B
Makefile
FEATURES := serde rand_core digest
|
|
|
|
export RUSTFLAGS := --cfg=curve25519_dalek_backend="simd"
|
|
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
|