]> git.proxmox.com Git - rustc.git/blame - vendor/time/README.md
New upstream version 1.46.0~beta.2+dfsg1
[rustc.git] / vendor / time / README.md
CommitLineData
ff7c6d11
XL
1time
2====
3
4Utilities for working with time-related functions in Rust
5
f035d41b
XL
6[![build status](https://github.com/time-rs/time/workflows/Build/badge.svg?branch=v0.1)](https://github.com/time-rs/time/actions?query=branch%3Av0.1)
7[![Documentation](https://docs.rs/time/badge.svg?version=0.1)](https://docs.rs/time/~0.1)
8![rustc 1.21.0](https://img.shields.io/badge/rustc-1.21.0-blue)
ff7c6d11 9
f035d41b 10## time v0.1.x is Deprecated
ff7c6d11 11
f035d41b
XL
12The 0.1.x series of this library is deprecated and in maintenance mode. No new
13features will be added. Active development now occurs in the 0.2.x series.
ff7c6d11 14
f035d41b
XL
15If you need additional functionality that this crate does not provide, check
16out the [`chrono`](https://github.com/chronotope/chrono) crate.
ff7c6d11
XL
17
18## Usage
19
20Put this in your `Cargo.toml`:
21
22```toml
23[dependencies]
24time = "0.1"
25```
26
27And this in your crate root:
28
29```rust
30extern crate time;
31```