// Copyright 2019-2024 Tauri Programme within The Commons Conservancy // SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: MIT use std::{ error::Error, fs::File, io::{BufWriter, Write}, path::PathBuf, }; pub fn main() -> Result<(), Box> { let schema = schemars::schema_for!(tauri_utils::config::Config); let schema_str = serde_json::to_string_pretty(&schema).unwrap(); let crate_dir = PathBuf::from(std::env::var("CARGO_MANIFEST_DIR")?); for file in [ crate_dir.join("schema.json"), crate_dir.join("../../tooling/cli/schema.json"), ] { let mut schema_file = BufWriter::new(File::create(file)?); write!(schema_file, "{schema_str}")?; } Ok(()) }