mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
c97ece5e81
* chore: web and tauri project fix: clippy * fix: update version
28 lines
642 B
Rust
28 lines
642 B
Rust
fn main() {
|
|
#[cfg(feature = "dart")]
|
|
flowy_codegen::protobuf_file::dart_gen(env!("CARGO_PKG_NAME"));
|
|
|
|
#[cfg(feature = "tauri_ts")]
|
|
{
|
|
flowy_codegen::protobuf_file::ts_gen(
|
|
env!("CARGO_PKG_NAME"),
|
|
env!("CARGO_PKG_NAME"),
|
|
flowy_codegen::Project::Tauri,
|
|
);
|
|
flowy_codegen::protobuf_file::ts_gen(
|
|
env!("CARGO_PKG_NAME"),
|
|
env!("CARGO_PKG_NAME"),
|
|
flowy_codegen::Project::TauriApp,
|
|
);
|
|
}
|
|
|
|
#[cfg(feature = "web_ts")]
|
|
flowy_codegen::protobuf_file::ts_gen(
|
|
env!("CARGO_PKG_NAME"),
|
|
"error",
|
|
flowy_codegen::Project::Web {
|
|
relative_path: "../../".to_string(),
|
|
},
|
|
);
|
|
}
|