├── .gitignore ├── Cargo.toml ├── README.md ├── UNLICENSE.txt ├── benches └── toy_parsers.rs ├── src ├── buffers.rs ├── csv.rs ├── iter.rs └── lib.rs └── test_data └── fr └── sample.conllx /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | .*.swp 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emk/rust-streaming/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emk/rust-streaming/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emk/rust-streaming/HEAD/UNLICENSE.txt -------------------------------------------------------------------------------- /benches/toy_parsers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emk/rust-streaming/HEAD/benches/toy_parsers.rs -------------------------------------------------------------------------------- /src/buffers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emk/rust-streaming/HEAD/src/buffers.rs -------------------------------------------------------------------------------- /src/csv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emk/rust-streaming/HEAD/src/csv.rs -------------------------------------------------------------------------------- /src/iter.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emk/rust-streaming/HEAD/src/iter.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emk/rust-streaming/HEAD/src/lib.rs -------------------------------------------------------------------------------- /test_data/fr/sample.conllx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emk/rust-streaming/HEAD/test_data/fr/sample.conllx --------------------------------------------------------------------------------