├── .github ├── dependabot.yml └── workflows │ └── rust.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches ├── datetime_format.rs └── datetime_parse.rs ├── deny.toml └── src ├── date.rs ├── duration.rs ├── lib.rs └── wrapper.rs /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/.github/workflows/rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /Cargo.lock 2 | /.vagga 3 | /target 4 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/README.md -------------------------------------------------------------------------------- /benches/datetime_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/benches/datetime_format.rs -------------------------------------------------------------------------------- /benches/datetime_parse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/benches/datetime_parse.rs -------------------------------------------------------------------------------- /deny.toml: -------------------------------------------------------------------------------- 1 | [licenses] 2 | version = 2 3 | allow = ["Apache-2.0", "MIT"] 4 | -------------------------------------------------------------------------------- /src/date.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/src/date.rs -------------------------------------------------------------------------------- /src/duration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/src/duration.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chronotope/humantime/HEAD/src/wrapper.rs --------------------------------------------------------------------------------