Skip to content

Commit

Permalink
Make jean a workspace member rather than an example
Browse files Browse the repository at this point in the history
  • Loading branch information
fasterthanlime committed Oct 8, 2024
1 parent ebbb092 commit be06313
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 14 deletions.
18 changes: 13 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = [
members = [ "jean",
"rc-zip",
"rc-zip-sync",
"rc-zip-tokio",
Expand Down
23 changes: 23 additions & 0 deletions jean/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[package]
name = "jean"
version = "1.0.0"
description = "A sample zip decompressor based on rc-zip"
license = "Apache-2.0 OR MIT"
authors = ["Amos Wenger <[email protected]>"]
edition = "2021"
readme = "README.md"
publish = false

[dependencies]
rc-zip = { version = "5.1.3", path = "../rc-zip", features = ["corpus"] }
rc-zip-sync = { version = "4.2.2", path = "../rc-zip-sync", features = [
"bzip2",
"deflate64",
"lzma",
"zstd",
] }
clap = { version = "4.4.18", features = ["derive"] }
humansize = "2.1.3"
indicatif = "0.17.7"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
cfg-if = "1.0.0"
File renamed without changes.
8 changes: 0 additions & 8 deletions rc-zip-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,3 @@ deflate64 = ["rc-zip/deflate64"]
lzma = ["rc-zip/lzma"]
bzip2 = ["rc-zip/bzip2"]
zstd = ["rc-zip/zstd"]

[dev-dependencies]
clap = { version = "4.4.18", features = ["derive"] }
humansize = "2.1.3"
indicatif = "0.17.7"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
rc-zip = { version = "5.1.3", path = "../rc-zip", features = ["corpus"] }
cfg-if = "1.0.0"

0 comments on commit be06313

Please sign in to comment.