-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
43 lines (37 loc) · 1.34 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
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.
Directories are supported, but only regular fields are yielded in iteration.
"""
version = "0.3.2"
edition = "2021"
keywords = ["tar", "tarball", "archive"]
categories = ["data-structures", "no-std", "parser-implementations"]
readme = "README.md"
license = "MIT"
homepage = "https://github.com/phip1611/tar-no-std"
repository = "https://github.com/phip1611/tar-no-std"
documentation = "https://docs.rs/tar-no-std"
rust-version = "1.76.0"
# required because "env_logger" uses "log" but with dependency to std.
resolver = "2"
[features]
default = []
alloc = []
unstable = [] # requires nightly
[[example]]
name = "alloc_feature"
required-features = ["alloc"]
[dependencies]
bitflags = "2.5"
log = { version = "0.4", default-features = false }
memchr = { version = "2.7", default-features = false }
num-traits = { version = "~0.2", default-features = false }
[dev-dependencies]
env_logger = "0.11"
[package.metadata.docs.rs]
all-features = true