-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2c32f8a
commit 886c8d4
Showing
4 changed files
with
148 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
[package] | ||
name = "zip-cli" | ||
version = "0.0.0" | ||
version = "0.0.1" | ||
authors = [ | ||
"Danny McClanahan <[email protected]>", | ||
] | ||
license = "MIT" | ||
repository = "https://github.com/zip-rs/zip2.git" | ||
keywords = ["zip", "archive", "compression", "cli"] | ||
categories = ["command-line-utilities", "compression", "filesystem", "development-tools::build-utils"] | ||
rust-version = "1.73.0" | ||
# Keep this up to date with clap! | ||
rust-version = "1.74.0" | ||
description = """ | ||
Binary for creation and manipulation of zip files. | ||
""" | ||
|
@@ -18,7 +19,16 @@ edition = "2021" | |
name = "zip-cli" | ||
|
||
[dependencies] | ||
zip.workspace = true | ||
|
||
clap = { version = "4.5.15", features = ["derive"] } | ||
eyre = "0.6" | ||
|
||
[dependencies.zip] | ||
workspace = true | ||
features = [ | ||
"bzip2", | ||
"deflate64", | ||
"deflate", | ||
"lzma", | ||
"zstd", | ||
"xz", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters