gitextract_tt0fh83e/ ├── .gitignore ├── Cargo.toml ├── LICENSE ├── Makefile ├── README.md ├── erased-serde-json/ │ ├── .gitignore │ ├── Cargo.toml │ ├── LICENSE-APACHE │ ├── LICENSE-MIT │ ├── README.md │ └── src/ │ ├── lib.rs │ └── ser.rs ├── src/ │ ├── commands.rs │ ├── decode.rs │ ├── discovery.rs │ ├── formatter.rs │ └── main.rs ├── stream-delimit/ │ ├── Cargo.toml │ ├── LICENSE │ ├── README.md │ └── src/ │ ├── byte_consumer.rs │ ├── converter.rs │ ├── error.rs │ ├── kafka_consumer.rs │ ├── lib.rs │ ├── stream.rs │ └── varint.rs ├── tests/ │ ├── README.md │ ├── fdsets/ │ │ ├── cat.fdset │ │ ├── dog.fdset │ │ └── person.fdset │ ├── fdsets-invalid/ │ │ └── .gitignore │ ├── protos/ │ │ └── dog.proto │ ├── samples/ │ │ ├── bad │ │ ├── cat │ │ ├── dog │ │ ├── dog_i32be_stream │ │ ├── dog_stream │ │ ├── person │ │ └── person_stream │ └── test_pqrs_bin.rs └── utils/ ├── .gitignore ├── GNUmakefile ├── README.txt ├── cat.proto ├── dog.proto ├── person.proto ├── proto_encoder.py └── requirements.txt