├── .github └── FUNDING.yml ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── benches ├── counts.rs ├── durations.rs └── throughputs.rs ├── src ├── human_count.rs ├── human_duration.rs ├── human_throughput.rs ├── lib.rs └── utils.rs └── tests └── mixed_serialize.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/README.md -------------------------------------------------------------------------------- /benches/counts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/benches/counts.rs -------------------------------------------------------------------------------- /benches/durations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/benches/durations.rs -------------------------------------------------------------------------------- /benches/throughputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/benches/throughputs.rs -------------------------------------------------------------------------------- /src/human_count.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/src/human_count.rs -------------------------------------------------------------------------------- /src/human_duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/src/human_duration.rs -------------------------------------------------------------------------------- /src/human_throughput.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/src/human_throughput.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/src/utils.rs -------------------------------------------------------------------------------- /tests/mixed_serialize.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsalmei/human-repr/HEAD/tests/mixed_serialize.rs --------------------------------------------------------------------------------