lcax_models 3.4.3

LCAx is an open, machine and human-readable data format for exchanging LCA results.
Documentation
1
2
3
4
5
6
7
8
9
use lcax_models::project;

#[test]
fn test_lcax() -> Result<(), String> {
    let project = project::Project::default();
    assert!(project.id.is_empty());

    Ok(())
}