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::epd;

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

    Ok(())
}