Kriskras99 commented on code in PR #409:
URL: https://github.com/apache/avro-rs/pull/409#discussion_r2703514402
##########
avro/src/schema/mod.rs:
##########
@@ -40,9 +37,11 @@ use std::{
fmt::Debug,
hash::Hash,
io::Read,
- str::FromStr,
};
-use strum_macros::{Display, EnumDiscriminants, EnumString};
+use strum_macros::{Display, EnumDiscriminants};
+
+pub mod record_field;
Review Comment:
```suggestion
mod record_field;
```
Let's make the module private for now, as there's nothing there that isn't
`pub use` in `schema.rs`.
Unless you plan on deprecating the `pub use` of course.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]