# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.76.0" name = "tar-no-std" version = "0.3.2" build = false autobins = false autoexamples = false autotests = false autobenches = false 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. Directories are supported, but only regular fields are yielded in iteration. ''' homepage = "https://github.com/phip1611/tar-no-std" documentation = "https://docs.rs/tar-no-std" readme = "README.md" keywords = [ "tar", "tarball", "archive", ] categories = [ "data-structures", "no-std", "parser-implementations", ] license = "MIT" repository = "https://github.com/phip1611/tar-no-std" resolver = "2" [package.metadata.docs.rs] all-features = true [lib] name = "tar_no_std" path = "src/lib.rs" [[example]] name = "alloc_feature" path = "examples/alloc_feature.rs" required-features = ["alloc"] [[example]] name = "minimal" path = "examples/minimal.rs" [dependencies.bitflags] version = "2.5" [dependencies.log] version = "0.4" default-features = false [dependencies.memchr] version = "2.7" default-features = false [dependencies.num-traits] version = "~0.2" default-features = false [dev-dependencies.env_logger] version = "0.11" [features] alloc = [] default = [] unstable = []