summaryrefslogtreecommitdiffstats
path: root/third_party/rust/time/README.md
blob: 9762f5ed8ae830a978a8133e664490f4a0ff51b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
time
====

Utilities for working with time-related functions in Rust

[![Build Status](https://travis-ci.org/rust-lang-deprecated/time.svg?branch=master)](https://travis-ci.org/rust-lang-deprecated/time)
[![Build status](https://ci.appveyor.com/api/projects/status/55m7rbaj9a5v3ad7?svg=true)](https://ci.appveyor.com/project/alexcrichton/time)

[Documentation](https://doc.rust-lang.org/time)

## Notes

This library is no longer actively maintained, but bugfixes will be added ([details](https://github.com/rust-lang-deprecated/time/issues/136)).

In 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.

## Usage

Put this in your `Cargo.toml`:

```toml
[dependencies]
time = "0.1"
```

And this in your crate root:

```rust
extern crate time;
```