rpkl 0.8.0

Bindings and codegen for Apple's Pkl configuration language
Documentation
1
2
3
4
5
6
7
8
use std::path::{Path, PathBuf};

pub fn pkl_tests_file<P: AsRef<Path>>(path: P) -> PathBuf {
    PathBuf::from(env!("CARGO_MANIFEST_DIR"))
        .join("tests")
        .join("pkl")
        .join(path)
}