├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── res ├── empty.txt └── numbers.txt └── src ├── lib.rs ├── std.rs ├── tokio.rs └── util.rs /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitfin/bytelines/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitfin/bytelines/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitfin/bytelines/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitfin/bytelines/HEAD/README.md -------------------------------------------------------------------------------- /res/empty.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/numbers.txt: -------------------------------------------------------------------------------- 1 | 0 2 | 1 3 | 2 4 | 3 5 | 4 6 | 5 7 | 6 8 | 7 9 | 8 10 | 9 11 | -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitfin/bytelines/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/std.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitfin/bytelines/HEAD/src/std.rs -------------------------------------------------------------------------------- /src/tokio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitfin/bytelines/HEAD/src/tokio.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whitfin/bytelines/HEAD/src/util.rs --------------------------------------------------------------------------------