• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

benches/H03-May-2022-1511

src/H03-May-2022-3,5542,821

.cargo-checksum.jsonH A D03-May-202289 11

.gitignoreH A D10-Nov-201420 32

.travis.ymlH A D30-Nov-2017725 3226

Cargo.tomlH A D01-Jan-19701.4 KiB4439

Cargo.toml.orig-cargoH A D10-May-2018895 3124

LICENSE-APACHEH A D10-Nov-201410.6 KiB202169

LICENSE-MITH A D10-Nov-20141 KiB2622

README.mdH A D06-Oct-2016858 3119

appveyor.ymlH A D31-Jul-2015478 1815

README.md

1time
2====
3
4Utilities for working with time-related functions in Rust
5
6[![Build Status](https://travis-ci.org/rust-lang-deprecated/time.svg?branch=master)](https://travis-ci.org/rust-lang-deprecated/time)
7[![Build status](https://ci.appveyor.com/api/projects/status/55m7rbaj9a5v3ad7?svg=true)](https://ci.appveyor.com/project/alexcrichton/time)
8
9[Documentation](https://doc.rust-lang.org/time)
10
11## Notes
12
13This library is no longer actively maintained, but bugfixes will be added ([details](https://github.com/rust-lang-deprecated/time/issues/136)).
14
15In case you're looking for something a little fresher and more actively maintained have a look at the [`chrono`](https://github.com/lifthrasiir/rust-chrono) crate.
16
17## Usage
18
19Put this in your `Cargo.toml`:
20
21```toml
22[dependencies]
23time = "0.1"
24```
25
26And this in your crate root:
27
28```rust
29extern crate time;
30```
31