-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Turn jean into an example, move things closer to the root of t…
…he repo (#53) * Turn jean into an example, move things closer to the root of the repo * Move zips closer to home as well * Fix CI (no -p jean anymore)
- Loading branch information
1 parent
0e9d3bf
commit 91756ab
Showing
72 changed files
with
5,060 additions
and
72 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,16 +1,59 @@ | ||
[workspace] | ||
members = [ "crates/*" ] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
[package] | ||
name = "rc-zip" | ||
version = "2.0.1" | ||
description = "zip reading and writing" | ||
description = "zip reading" | ||
repository = "https://github.com/fasterthanlime/rc-zip" | ||
license = "Apache-2.0 OR MIT" | ||
authors = ["Amos Wenger <[email protected]>"] | ||
edition = "2021" | ||
readme = "README.md" | ||
|
||
keywords = ["zip", "unzip"] | ||
categories = ["compression"] | ||
|
||
[lib] | ||
name = "rc_zip" | ||
path = "src/lib.rs" | ||
|
||
[[example]] | ||
name = "jean" | ||
path = "examples/jean/src/main.rs" | ||
|
||
[dependencies] | ||
winnow = "0.5.35" | ||
pretty-hex = "0.4.1" | ||
oval = "1.0.0" | ||
chrono = "0.4.33" | ||
encoding_rs = "0.8.33" | ||
crc32fast = "1.3.2" | ||
positioned-io = { version = "0.3.3", optional = true } | ||
tracing = "0.1.40" | ||
oem_cp = "2.0.0" | ||
thiserror = "1.0.56" | ||
chardetng = "0.1.17" | ||
flate2 = { version = "1.0.28", optional = true } | ||
num_enum = "0.7.2" | ||
byteorder = "1.5.0" | ||
cfg-if = "1.0.0" | ||
lzma-rs = { version = "0.3.0", features = ["stream"], optional = true } | ||
deflate64 = { version = "0.1.7", optional = true } | ||
bzip2 = { version = "0.4.4", optional = true } | ||
|
||
[features] | ||
default = ["sync", "file", "deflate"] | ||
sync = [] | ||
file = ["positioned-io"] | ||
deflate = ["dep:flate2"] | ||
deflate64 = ["dep:deflate64"] | ||
lzma = ["dep:lzma-rs"] | ||
bzip2 = ["dep:bzip2"] | ||
|
||
[workspace.dependencies] | ||
positioned-io = { version = "0.3.3" } | ||
[dev-dependencies] | ||
clap = { version = "4.4.18", features = ["derive"] } | ||
humansize = "2.1.3" | ||
indicatif = "0.17.7" | ||
tracing-subscriber = "0.3.18" | ||
tracing-test = "0.2.4" | ||
|
||
[profile.release] | ||
debug = 1 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.