1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! Conditional compilation according manifest MSRV.
//!
//! # Selectors
//!
//! - `#[rustversion_msrv::msrv]`
//!
//! True on the **call-site** crate's `rust-version` field, i.e., its minimum supported Rust
//! version (MSRV).
//!
//! # Use Cases
//!
//! The motivating use case for the `msrv` macro in this crate is to ensure a stable compiler error
//! output when running negative trybuild tests. Guarding your test function like this means you
//! only need to update the .stderr files when you bump your MSRV, not (potentially) every stable
//! release (or worse). Of course, try make sure that your CI is actually running an MSRV job in its
//! set.
//!
//! ```
//! #[rustversion_msrv::msrv]
//! #[test]
//! fn trybuild() {
//! // ...
//! }
//! ```
extern crate proc_macro;
use TokenStream;
use Version;
const RUST_VERSION: Version = include!;