28 lines
583 B
TOML
28 lines
583 B
TOML
[package]
|
|
name = "redox-initfs-ar"
|
|
version = "0.1.0"
|
|
authors = ["4lDO2 <4lDO2@protonmail.com>"]
|
|
edition = "2018"
|
|
description = "Archive a directory into a Redox initfs image"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
path = "src/bin/archive.rs"
|
|
name = "redox-initfs-ar"
|
|
|
|
[[bin]]
|
|
path = "src/bin/dump.rs"
|
|
name = "redox-initfs-dump"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["cargo"] }
|
|
env_logger = "0.8"
|
|
log = "0.4"
|
|
plain = "0.2"
|
|
twox-hash = "1.6"
|
|
|
|
redox-initfs = { path = ".." }
|