diff options
| author | Zeyla Hellyer <[email protected]> | 2018-07-29 19:48:35 -0700 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2018-07-29 19:48:35 -0700 |
| commit | 3d3430ca8a77599f981e1900ea8ded9bcf01ee87 (patch) | |
| tree | 9593a4e355bbac6b99dd3c7af697fbb1d5bef0a5 | |
| parent | Reduce minimal Rust version to 1.25 (diff) | |
| download | serenity-3d3430ca8a77599f981e1900ea8ded9bcf01ee87.tar.xz serenity-3d3430ca8a77599f981e1900ea8ded9bcf01ee87.zip | |
Document minimum Rust version
| -rw-r--r-- | README.md | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -1,4 +1,4 @@ -[![ci-badge][]][ci] [![docs-badge][]][docs] [![guild-badge][]][guild] +[![ci-badge][]][ci] [![docs-badge][]][docs] [![guild-badge][]][guild] [![crates.io version]][crates.io link] [![rust 1.25+ badge]][rust 1.25+ link] # serenity @@ -89,7 +89,7 @@ and to the top of your `main.rs`: #[macro_use] extern crate serenity; ``` -Serenity only supports the _latest_ Stable, Beta, and Nightly. +Serenity supports a minimum of Rust 1.25. # Features @@ -191,6 +191,8 @@ Voice+youtube-dl: [ci]: https://travis-ci.org/serenity-rs/serenity [ci-badge]: https://travis-ci.org/serenity-rs/serenity.svg?branch=master [client's module-level documentation]: https://docs.rs/serenity/*/serenity/client/index.html +[crates.io link]: https://crates.io/crates/serenity +[crates.io version]: https://img.shields.io/crates/v/serenity.svg [discord docs]: https://discordapp.com/developers/docs/intro [docs]: https://docs.rs/serenity [docs-badge]: https://img.shields.io/badge/docs-online-5023dd.svg @@ -205,3 +207,5 @@ Voice+youtube-dl: [library:discord.js]: https://github.com/hydrabolt/discord.js [library:discord.py]: https://github.com/Rapptz/discord.py [logo]: https://raw.githubusercontent.com/serenity-rs/serenity/master/logo.png +[rust 1.25+ badge]: https://img.shields.io/badge/rustc-1.25+-lightgray.svg? +[rust 1.25+ link]: https://blog.rust-lang.org/2018/03/29/Rust-1.25.html |