File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ [package ]
2+ name = " canyon_entities"
3+ version.workspace = true
4+ edition.workspace = true
5+ authors.workspace = true
6+ documentation.workspace = true
7+ homepage.workspace = true
8+ readme.workspace = true
9+ license.workspace = true
10+ description.workspace = true
11+
12+ [dependencies ]
13+ regex = { workspace = true }
14+ partialdebug = { workspace = true }
15+ quote = { workspace = true }
16+ proc-macro2 = { workspace = true }
17+ syn = { version = " 1.0.86" , features = [" full" , " parsing" ] } # TODO Pending to refactor and upgrade
Original file line number Diff line number Diff line change 1+ use crate :: register_types:: CanyonRegisterEntity ;
2+ use std:: sync:: Mutex ;
3+
4+ pub mod entity;
5+ pub mod entity_fields;
6+ pub mod field_annotation;
7+ pub mod manager_builder;
8+ pub mod register_types;
9+
10+ pub static CANYON_REGISTER_ENTITIES : Mutex < Vec < CanyonRegisterEntity < ' static > > > =
11+ Mutex :: new ( Vec :: new ( ) ) ;
You can’t perform that action at this time.
0 commit comments