mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* add derive(specta::Type) * use specta from git * introduce Uuid type * remove unnecessary specta::Type * document export_types test * upgrade Specta The previous Specta branch had some hacks that were just for this project. They have all been converted into proper features so they can be merged into main. * remove some unnecessary specta::Type uses * add MessageDiscriminantDef explanation * manually export types with specta * rename 'specta.rs' to 'export_types.rs' * rename 'export_types' to 'generate_ts_types' --------- Co-authored-by: Oscar Beaumont <oscar@otbeaumont.me>
16 lines
309 B
Rust
16 lines
309 B
Rust
extern crate graphite_proc_macros;
|
|
|
|
// `macro_use` puts these macros into scope for all descendant code files
|
|
#[macro_use]
|
|
mod macros;
|
|
mod generate_ts_types;
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
pub mod application;
|
|
pub mod consts;
|
|
pub mod dispatcher;
|
|
pub mod messages;
|
|
pub mod test_utils;
|
|
pub mod utility_traits;
|