mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-11-28 12:27:16 +03:00
26 lines
710 B
Rust
26 lines
710 B
Rust
// Copyright 2019-2023 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<dyn Error>> {
|
|
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(())
|
|
}
|