From: Colin Walters Date: Wed, 20 Dec 2023 02:01:21 +0000 (-0500) Subject: rust: Add missing feature versions X-Git-Tag: archive/raspbian/2024.8-1+rpi1^2~7^2~7^2~14^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8b6e96cf521cbf4f5c5a9e947631cf6bba6d95cb;p=ostree.git rust: Add missing feature versions - We missed 2022_2, which specifically includes https://docs.rs/ostree/latest/ostree/static.PATH_BOOTED.html and I was really confused why that was missing - Add more recent upstream versions too --- diff --git a/Cargo.toml b/Cargo.toml index 4633410e..dc87f948 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -94,5 +94,8 @@ v2021_2 = ["v2021_1", "ffi/v2021_2"] v2021_3 = ["v2021_2", "ffi/v2021_3"] v2021_4 = ["v2021_3", "ffi/v2021_4"] v2021_5 = ["v2021_4", "ffi/v2021_5"] -v2022_5 = ["v2021_5", "ffi/v2022_5"] +v2022_2 = ["v2021_5", "ffi/v2022_2"] +v2022_5 = ["v2022_2", "ffi/v2022_5"] v2022_6 = ["v2022_5", "ffi/v2022_6"] +v2022_7 = ["v2022_6", "ffi/v2022_7"] +v2023_1 = ["v2022_7", "ffi/v2023_1"]