-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 720 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 720 Bytes
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
[package]
name = "afpack"
version = "0.1.0"
edition = "2021"
authors = ["Your Name <your.email@example.com>"]
description = "CLI tool for managing large dependency folders using Apple Sparse Image Format (ASIF)"
license = "MIT"
repository = "https://github.com/yourusername/afpack"
keywords = ["macos", "asif", "compression", "dependencies", "performance"]
categories = ["command-line-utilities", "development-tools"]
[lib]
name = "afpack"
path = "src/lib.rs"
[[bin]]
name = "afpack"
path = "src/main.rs"
[[example]]
name = "diskimage_usage"
path = "examples/diskimage_usage.rs"
[dependencies]
applesauce = "0.6.7"
clap = { version = "4.0", features = ["derive"] }
trash = "5.2.2"
xshell = "0.2"
[dev-dependencies]