|
4 | 4 |
|
5 | 5 | # `⚙️ cfg-expr` |
6 | 6 |
|
7 | | -**A parser and evaluator for Rust `cfg()` expressions. Builtin targets as of [1.90.0] are supported.** |
| 7 | +**A parser and evaluator for Rust `cfg()` expressions. Builtin targets as of [1.91.0] are supported.** |
8 | 8 |
|
9 | 9 | [](https://github.com/EmbarkStudios/cfg-expr/actions?workflow=CI) |
10 | 10 | [](https://crates.io/crates/cfg-expr) |
11 | 11 | [](https://docs.rs/cfg-expr) |
12 | 12 | [](https://blog.rust-lang.org/2023/06/01/Rust-1.70.0.html) |
13 | | -[](https://forge.rust-lang.org/release/platform-support.html) |
| 13 | +[](https://forge.rust-lang.org/release/platform-support.html) |
14 | 14 | [](CODE_OF_CONDUCT.md) |
15 | 15 | [](https://embark.dev) |
16 | 16 | </div> |
|
24 | 24 |
|
25 | 25 | `cfg-expr` is a crate that can be used to parse and evaluate Rust `cfg()` expressions, both as declarable in Rust code itself, as well in cargo manifests' `[target.'cfg()'.dependencies]` sections. |
26 | 26 |
|
27 | | -It contains a list of all builtin targets known to rustc as of [1.90.0] that can be used to determine if a particular cfg expression is satisfiable. |
| 27 | +It contains a list of all builtin targets known to rustc as of [1.91.0] that can be used to determine if a particular cfg expression is satisfiable. |
28 | 28 |
|
29 | 29 | ```rust |
30 | 30 | use cfg_expr::{targets::get_builtin_target_by_triple, Expression, Predicate}; |
@@ -100,4 +100,4 @@ at your option. |
100 | 100 |
|
101 | 101 | Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. |
102 | 102 |
|
103 | | -[1.90.0]: (https://forge.rust-lang.org/release/platform-support.html) |
| 103 | +[1.91.0]: (https://forge.rust-lang.org/release/platform-support.html) |
0 commit comments