Skip to content

Commit

Permalink
cargo: dependency updates
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed May 3, 2024
1 parent 14097e0 commit 99bb0c2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name = "tar-no-std"
description = """
Library to read Tar archives (by GNU Tar) in `no_std` contexts with zero allocations.
The crate is simple and only supports reading of "basic" archives, therefore no extensions, such
as GNU Longname. The maximum supported file name length is 256 characters excluding the NULL-byte
(using the tar name/prefix longname implementation).The maximum supported file size is 8GiB.
as GNU Longname. The maximum supported file name length is 256 characters excluding the NULL-byte
(using the tar name/prefix longname implementation).The maximum supported file size is 8GiB.
Directories are supported, but only regular fields are yielded in iteration.
"""
version = "0.2.0"
Expand All @@ -29,10 +29,10 @@ name = "alloc_feature"
required-features = ["alloc"]

[dependencies]
bitflags = "2.0"
bitflags = "2.5"
log = { version = "0.4", default-features = false }
memchr = { version = "2.6.3", default-features = false }
num-traits = { version = "0.2.16", default-features = false }
memchr = { version = "2.7", default-features = false }
num-traits = { version = "~0.2", default-features = false }

[dev-dependencies]
env_logger = "0.10"
env_logger = "0.11"
1 change: 1 addition & 0 deletions src/tar_format_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ mod tests {
}

#[test]
#[allow(clippy::cognitive_complexity)]
fn test_append() {
let mut s = TarFormatString::new([0; 20]);

Expand Down

0 comments on commit 99bb0c2

Please sign in to comment.