fixed dependencies issues

This commit is contained in:
Maxime Van Hees
2025-08-05 13:00:09 +02:00
parent 1a62fcacdd
commit 0cffda37a7
4 changed files with 2066 additions and 3 deletions

View File

@@ -2,12 +2,11 @@ use heromodels_core::BaseModelData;
use heromodels_derive::model;
use rhai::CustomType;
use rhai::TypeBuilder;
use rhailib_derive::RhaiApi;
use serde::{Deserialize, Serialize};
/// Represents an event in a contact
#[model]
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, CustomType, Default, RhaiApi)]
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, CustomType, Default)]
pub struct Object {
/// Base model data
pub base_data: BaseModelData,