avro/src/schema.rs (3 lines): - line 274: // FIXME Reading name from the type is wrong ! The name there is just a metadata (AVRO-3430) - line 675: // TODO: "type" = "" - line 1434: // TODO make a better descriptive error message here that conveys that a named schema cannot be found avro/src/ser_schema.rs (3 lines): - line 2279: assert_eq!(value_type, "tuple"); // TODO: why is this 'tuple' ?! - line 2293: assert_eq!(*value_type, "tuple"); // TODO: why is this 'tuple' ?! - line 2646: assert_eq!(value_type, "tuple"); // TODO: why is this 'tuple' ?! avro/src/types.rs (3 lines): - line 200: // FIXME: this is incorrect in case first type in union is not "none" - line 302: JsonValue::Number(n) => Value::Long(n.as_u64().unwrap() as i64), // TODO: Not so great - line 500: // TODO: check precision against n avro/src/lib.rs (3 lines): - line 928: //TODO: move where it fits better - line 980: //TODO: move where it fits better - line 1022: //TODO: move where it fits better avro/src/decode.rs (1 line): - line 310: // TODO: This clone is also expensive. See if we can do away with it... avro_derive/src/lib.rs (1 line): - line 267: // TODO check and error report with something like https://docs.rs/quote/1.0.15/quote/macro.quote_spanned.html#example avro/src/util.rs (1 line): - line 65: // FIXME no warning when aliases aren't a json array of json strings avro/src/reader.rs (1 line): - line 125: // TODO: Figure out a way to avoid having to truncate for the second case.