-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 1.19 KB
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 1.19 KB
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
[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.4.2"
edition = "2024"
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.85.0"
exclude = [
"tests"
]
[features]
default = []
alloc = []
[[example]]
name = "alloc_feature"
required-features = ["alloc"]
[dependencies]
bitflags = "2.11"
log = { version = "~0.4", default-features = false }
num-traits = { version = "~0.2", default-features = false }
[dev-dependencies]
env_logger = "0.11"
[package.metadata.docs.rs]
all-features = true