valor-config 0.1.0

Valkyrie workspace manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use valkyrie_errors::ValkyrieResult;

use valor_config::ValorConfig;

#[test]
fn test() -> ValkyrieResult {
    toml::from_str::<ValorConfig>(include_str!("deps2.toml"))?;
    json5::from_str::<ValorConfig>(include_str!("deps1.json5"))?;
    Ok(())
}

#[test]
fn test2() -> ValkyrieResult {
    println!("{:#?}", ValorConfig::load("tests/mock1")?);
    Ok(())
}