diff options
Diffstat (limited to 'vendor/time-0.1.43/README.md')
-rw-r--r-- | vendor/time-0.1.43/README.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/time-0.1.43/README.md b/vendor/time-0.1.43/README.md new file mode 100644 index 000000000..f427eb3ea --- /dev/null +++ b/vendor/time-0.1.43/README.md @@ -0,0 +1,31 @@ +time +==== + +Utilities for working with time-related functions in Rust + +[![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) +[![Documentation](https://docs.rs/time/badge.svg?version=0.1)](https://docs.rs/time/~0.1) +![rustc 1.21.0](https://img.shields.io/badge/rustc-1.21.0-blue) + +## time v0.1.x is Deprecated + +The 0.1.x series of this library is deprecated and in maintenance mode. No new +features will be added. Active development now occurs in the 0.2.x series. + +If you need additional functionality that this crate does not provide, check +out the [`chrono`](https://github.com/chronotope/chrono) crate. + +## Usage + +Put this in your `Cargo.toml`: + +```toml +[dependencies] +time = "0.1" +``` + +And this in your crate root: + +```rust +extern crate time; +``` |