Skip to content

Commit

Permalink
Update the dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeoneToIgnore committed Jul 14, 2023
1 parent 3b753b6 commit 923fdee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ tempfile = "3"
tokio = { version = "1", features = ["full"] }

[target."cfg(unix)".dependencies]
xattr = { version = "0.2", optional = true }
xattr = { version = "1.0", optional = true }
libc = "0.2"

[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = "0.2"
redox_syscall = "0.3"

[features]
default = ["xattr"]
2 changes: 1 addition & 1 deletion src/entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -854,7 +854,7 @@ impl<R: Read + Unpin> Read for EntryFields<R> {
cx: &mut Context<'_>,
into: &mut io::ReadBuf<'_>,
) -> Poll<io::Result<()>> {
let mut this = self.get_mut();
let this = self.get_mut();
loop {
if this.read_state.is_none() {
this.read_state = this.data.pop_front();
Expand Down

0 comments on commit 923fdee

Please sign in to comment.