ci: fix ci errors

This commit is contained in:
appflowy
2022-02-16 12:22:26 +08:00
parent 0aed86737f
commit 2a6ce12a55
6 changed files with 10 additions and 12 deletions

View File

@ -43,7 +43,7 @@ pub fn gen(crate_name: &str) {
}
const DART_IMPORTED: &str = r#"
/// Auto gen code from rust ast, do not edit
/// Auto generate. Do not edit
part of 'dispatch.dart';
"#;

View File

@ -9,3 +9,9 @@ mod flowy_toml;
#[cfg(any(feature = "pb_gen", feature = "dart_event"))]
pub mod util;
#[derive(serde::Serialize, serde::Deserialize)]
pub struct ProtoCache {
pub structs: Vec<String>,
pub enums: Vec<String>,
}

View File

@ -6,6 +6,7 @@ use crate::code_gen::protobuf_file::ast::parse_crate_protobuf;
use crate::code_gen::protobuf_file::proto_info::ProtobufCrateContext;
use crate::code_gen::protobuf_file::ProtoFile;
use crate::code_gen::util::*;
use crate::code_gen::ProtoCache;
use std::fs::File;
use std::path::Path;
use std::{fs::OpenOptions, io::Write};
@ -92,12 +93,6 @@ fn write_rust_crate_mod_file(crate_contexts: &[ProtobufCrateContext]) {
}
}
#[derive(serde::Serialize, serde::Deserialize)]
pub struct ProtoCache {
pub structs: Vec<String>,
pub enums: Vec<String>,
}
impl ProtoCache {
fn from_crate_contexts(crate_contexts: &[ProtobufCrateContext]) -> Self {
let proto_files = crate_contexts