We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cba4477 commit 039fd7cCopy full SHA for 039fd7c
Cargo.toml
@@ -40,7 +40,7 @@ serde_derive = "1"
40
serde = "1"
41
serde_json = "1"
42
uuid = { version = "~0.8", features = ["serde"] }
43
-nix = "0.21"
+nix = "0.29"
44
tracing = "0.1"
45
46
[features]
src/error.rs
@@ -139,6 +139,6 @@ impl From<Error> for RadosError {
139
}
140
impl From<i32> for RadosError {
141
fn from(err: i32) -> RadosError {
142
- RadosError::ApiError(nix::errno::Errno::from_i32(-err))
+ RadosError::ApiError(nix::errno::Errno::from_raw(-err))
143
144
0 commit comments