summaryrefslogtreecommitdiffstats
path: root/vendor/time-0.1.43/README.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-18 02:49:50 +0000
commit9835e2ae736235810b4ea1c162ca5e65c547e770 (patch)
tree3fcebf40ed70e581d776a8a4c65923e8ec20e026 /vendor/time-0.1.43/README.md
parentReleasing progress-linux version 1.70.0+dfsg2-1~progress7.99u1. (diff)
downloadrustc-9835e2ae736235810b4ea1c162ca5e65c547e770.tar.xz
rustc-9835e2ae736235810b4ea1c162ca5e65c547e770.zip
Merging upstream version 1.71.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/time-0.1.43/README.md')
-rw-r--r--vendor/time-0.1.43/README.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/time-0.1.43/README.md b/vendor/time-0.1.43/README.md
deleted file mode 100644
index f427eb3ea..000000000
--- a/vendor/time-0.1.43/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-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;
-```