maint: Add version bound to new additions

This commit is contained in:
Robert Hensing 2025-10-21 23:18:33 +02:00
parent 03c0dac5b3
commit 01443c7f69
3 changed files with 37 additions and 2 deletions

View file

@ -6,7 +6,7 @@ fn main() {
// Unfortunately, Rust doesn't give us a "greater than" operator in conditional
// compilation, so we pre-evaluate the version comparisons here, making use
// of the multi-valued nature of Rust cfgs.
let relevant_versions = vec!["2.26"];
let relevant_versions = vec!["2.26", "2.33"];
let versions = relevant_versions
.iter()
.map(|v| format!("\"{}\"", v))