8 个版本

0.2.3 2021年11月29日
0.2.2 2019年4月19日
0.1.3 2019年3月12日

#917 in 文件系统

MIT/Apache

270KB
6.5K SLoC

Build Status API Documentation License crates.io

Rust 接口和包装器,用于 kpathsea 库

注意: 目前没有安全保证,包装器不是线程安全的(见 #2)

示例

  let kpse = Kpaths::new()
    .expect("You need a properly setup tex toolchain (texlive/MikTeX/...) and kpathsea headers, to use this wrapper.");
  if let Some(path) = kpse.find_file("article.cls") {
    assert!(path.ends_with("article.cls"), "Successfully found the full path of article.cls");
  } else {
    panic!("A tex toolchain was found, but the search failed to detect a class file.");
  }

lib.rs:

TeX 的 kpathsea 文件搜索库的 Rust 高级 API

依赖关系

~2–10MB
~105K SLoC