envpath 0.0.1

A library for parsing and deserialising paths with special rules. The format is similar to `["$proj(com.xy.z): data ? cfg", "$const: os", "$val: rand-16"]`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::io;

use envpath::EnvPath;

#[ignore]
#[test]
fn test_proj_dir() -> io::Result<()> {
  let new_project = EnvPath::new_project("me", "tmoe", "glossa-cli")?;
  let dir = new_project.data_dir();
  println!("{dir:?}");
  Ok(())
}