lcax 3.5.0

LCAx is an open, machine and human-readable data format for exchanging LCA results.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod docs;

use schemars::schema_for;

use lcax_models::project::Project;

/// Generate a JSON Schema for LCAx structs.
fn main() {
    let project_schema = serde_json::to_string_pretty(&schema_for!(Project)).unwrap();

    println!("{}", project_schema);
}