blob: cda17a2af396fc1700f52b645a7ab2e65deaff9c (
plain) (
blame)
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
|
[package]
name = "squashfs-ng"
version = "0.1.2"
authors = ["Matthew Schauer <matthew.schauer@e10x.net>"]
edition = "2021"
description = "High-level Rust wrapper for squashfs-tools-ng"
readme = "readme.md"
documentation = "https://docs.rs/squashfs-ng"
repository = "https://github.com/showermat/squashfs-ng-rs"
license = "Apache-2.0"
categories = ["compression", "filesystem"]
[build-dependencies]
bindgen = "0.68.1"
[dependencies]
lazy_static = "1.4"
libc = "0.2"
memmap = "0.7"
num_cpus = "1.13"
num-traits = "0.2"
num-derive = "0.3"
owning_ref = "0.4"
thiserror = "1.0"
walkdir = "2.3"
xattr = "0.2"
[features]
hermetic = []
[package.metadata.docs.rs]
features = ["hermetic"]
|