sphinx-ultra 0.3.0

High-performance Rust-based Sphinx documentation builder for large codebases
Documentation
1
2
3
4
5
6
7
8
fn main() {
    let target = std::env::var("TARGET").unwrap();

    // For musl targets, ensure we link the math library
    if target.contains("musl") {
        println!("cargo:rustc-link-lib=m");
    }
}