Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 974 Bytes

README.md

File metadata and controls

39 lines (35 loc) · 974 Bytes

dami

Lines of code
Build Status
Speed

Data Manipulations in Rust

Building Documentation locally

You need to set RUSTDOCSFLAGS EXPLICITLY

RUSTDOCFLAGS="--html-in-header katex-header.html" cargo doc --no-deps

This only works for --no-deps because katex-header.html doesn't exist fot dependent crates.

If you with to set RUSTDOC flags automatically in this crate you can put this in your .cargo/config.toml file

[build]
rustdocflags = ["--html-in-header", "katex-header.html"]