lib.rs 388 B

1234567891011121314151617
  1. #[cfg(feature = "proto_gen")]
  2. pub mod protobuf_file;
  3. #[cfg(feature = "dart_event")]
  4. pub mod dart_event;
  5. #[cfg(any(feature = "proto_gen", feature = "dart_event"))]
  6. mod flowy_toml;
  7. #[cfg(any(feature = "proto_gen", feature = "dart_event"))]
  8. pub mod util;
  9. #[derive(serde::Serialize, serde::Deserialize)]
  10. pub struct ProtoCache {
  11. pub structs: Vec<String>,
  12. pub enums: Vec<String>,
  13. }