mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 08:31:35 +03:00
8bdd894925
* refactor(core): move bundle script to /tauri crate * fix(cli): clippy * fix(core): tests
22 lines
465 B
Rust
22 lines
465 B
Rust
use std::{
|
|
env::current_dir,
|
|
error::Error,
|
|
fs::File,
|
|
io::{BufWriter, Write},
|
|
};
|
|
|
|
mod config_definition;
|
|
|
|
pub fn main() -> Result<(), Box<dyn Error>> {
|
|
let schema = schemars::schema_for!(config_definition::Config);
|
|
let schema_file_path = current_dir()?.join("schema.json");
|
|
let mut schema_file = BufWriter::new(File::create(&schema_file_path)?);
|
|
write!(
|
|
schema_file,
|
|
"{}",
|
|
serde_json::to_string_pretty(&schema).unwrap()
|
|
)?;
|
|
|
|
Ok(())
|
|
}
|