borsh_schema_derive_internal/
lib.rs

1#![recursion_limit = "128"]
2// TODO: re-enable this lint when we bump msrv to 1.58
3#![allow(clippy::uninlined_format_args)]
4
5mod helpers;
6
7mod enum_schema;
8mod struct_schema;
9pub use enum_schema::process_enum;
10pub use struct_schema::process_struct;