jklamer opened a new pull request, #1683:
URL: https://github.com/apache/avro/pull/1683
Silly build mistake I made: was not able to use derive macro without
including in lib.rs.
+
Need to qualify HashMap in derive macro for use in contexts where hash map
not imported.
results in being able to use as:
```
use apache_avro::AvroSchema;
use serde::{Serialize, Deserialize};
#[derive(Debug, Serialize, Deserialize, AvroSchema)]
struct A {
a : i64,
b: String,
}
```
--
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]