Skip to content

Commit

Permalink
Set MSRV to 1.51
Browse files Browse the repository at this point in the history
The `doc(include)` logic is placed back behind the `nightly` feature
flag, as it requires 1.54.
  • Loading branch information
str4d committed Nov 19, 2021
1 parent b915593 commit d99a256
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.51.0
6 changes: 5 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,12 @@
// - Deirdre Connolly <[email protected]>
// - Henry de Valence <[email protected]>

#![doc(html_root_url = "https://docs.rs/reddsa/0.0.0")]
#![cfg_attr(feature = "nightly", feature(external_doc))]
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
#![deny(missing_docs)]
#![doc = include_str!("../README.md")]

//! Docs require the `nightly` feature until RFC 1990 lands.
pub mod batch;
mod constants;
Expand Down

0 comments on commit d99a256

Please sign in to comment.