bindings: rust: expose v2.1 features as flag
authorErik Schilling <erik.schilling@linaro.org>
Mon, 6 Nov 2023 12:53:14 +0000 (13:53 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 8 Nov 2023 13:06:03 +0000 (14:06 +0100)
v2.1 provided a getter to read the chip name from a request.

This adds v2_1 as feature in order to raise the minimum requested version
to v2.1 for exposing the new API.

This is identical to the concept patch that was posted [1] when this
feature flag mechanism was proposed. Only the commit message was
reworded.

[1] https://lore.kernel.org/all/20231006-b4-bindings-old-version-fix-v1-2-a65f431afb97@linaro.org/

Signed-off-by: Erik Schilling <erik.schilling@linaro.org>
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/rust/libgpiod-sys/Cargo.toml
bindings/rust/libgpiod/Cargo.toml
bindings/rust/libgpiod/README.md
bindings/rust/libgpiod/src/line_request.rs
bindings/rust/libgpiod/tests/line_request.rs

index b4d26e91281a66e6cd02f82a073b7a563ea00fd8..f90615d4a04c15ec95bfdeccfb4630aaaab0085e 100644 (file)
@@ -18,11 +18,16 @@ exclude = [
     "Makefile.am",
 ]
 
+[features]
+v2_1 = []
+
 [dependencies]
 
 [build-dependencies]
 bindgen = "0.63"
 system-deps = "2.0"
 
-[package.metadata.system-deps]
-libgpiod = "2"
+[package.metadata.system-deps.libgpiod]
+name = "libgpiod"
+version = "2"
+v2_1 = { version = "2.1" }
index 3ce05dffc536f998b510e6becb14c9c780c60466..7ddf5fd55ae616e70816331bfa7161d23eca6b59 100644 (file)
@@ -19,7 +19,8 @@ exclude = [
 ]
 
 [features]
-vnext = []
+v2_1 = ["libgpiod-sys/v2_1"]
+vnext = ["v2_1"]
 
 [dependencies]
 errno = "0.2.8"
index c86b06eb468a36670550be518b87661506cdccd7..1ef3743a99c967dca1be15f16bd3f299612bed16 100644 (file)
@@ -28,6 +28,7 @@ C library will be exposed by default.
 Setting flags allows to increase the base version and export features of newer
 versions:
 
+- `v2_1`: Minimum version of `2.1.x`
 - `vnext`: The upcoming, still unreleased version of the C lib
 
 ## License
index a7fe6d068aa9af1e3c563f77e26ee3e3b6aa6989..7ec65085780e19499e08817e562ff0f9c004a6ee 100644 (file)
@@ -2,7 +2,7 @@
 // SPDX-FileCopyrightText: 2022 Linaro Ltd.
 // SPDX-FileCopyrightText: 2022 Viresh Kumar <viresh.kumar@linaro.org>
 
-#[cfg(feature = "vnext")]
+#[cfg(feature = "v2_1")]
 use std::ffi::CStr;
 use std::os::unix::prelude::AsRawFd;
 use std::time::Duration;
@@ -32,7 +32,7 @@ impl Request {
     }
 
     /// Get the name of the chip this request was made on.
-    #[cfg(feature = "vnext")]
+    #[cfg(feature = "v2_1")]
     pub fn chip_name(&self) -> Result<&str> {
         // SAFETY: The `gpiod_line_request` is guaranteed to be live as long
         // as `&self`
index a936a1b7d54db0672698b7458f1ca9f56ccc43a8..4e095a40e09d8c8fe8b3d32ae3db0ca6e6a00652 100644 (file)
@@ -60,7 +60,7 @@ mod line_request {
         use super::*;
 
         #[test]
-        #[cfg(feature = "vnext")]
+        #[cfg(feature = "v2_1")]
         fn chip_name() {
             const GPIO: Offset = 2;
             let mut config = TestConfig::new(NGPIO).unwrap();