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

..03-May-2022-

src/H03-May-2022-3,5942,845

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

.cargo_vcs_info.jsonH A D26-Aug-202074 65

.gitignoreH A D26-Aug-202020 32

Cargo.tomlH A D26-Aug-20201.3 KiB4137

Cargo.toml.orig-cargoH A D26-Aug-2020819 2823

LICENSE-APACHEH A D26-Aug-202010.6 KiB202169

LICENSE-MITH A D26-Aug-20201 KiB2622

README.mdH A D26-Aug-2020848 3221

README.md

1time
2====
3
4Utilities for working with time-related functions in Rust
5
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)
9
10## time v0.1.x is Deprecated
11
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.
14
15If you need additional functionality that this crate does not provide, check
16out the [`chrono`](https://github.com/chronotope/chrono) crate.
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```
32