Skip to content
This repository has been archived by the owner on Nov 7, 2024. It is now read-only.

lib: port CLI handling to clap v3 #345

Merged
merged 2 commits into from
Sep 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ readme = "README.md"
[dependencies]
anyhow = "1.0"
ostree-ext = { path = "../lib" }
clap = "2.33.3"
structopt = "0.3.21"
clap = "3.2"
libc = "0.2.92"
tokio = { version = "1", features = ["macros"] }
log = "0.4.0"
Expand Down
3 changes: 1 addition & 2 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ version = "0.8.7"
[dependencies]
anyhow = "1.0"
containers-image-proxy = "0.5.1"

async-compression = { version = "0.3", features = ["gzip", "tokio"] }
bitflags = "1"
camino = "1.0.4"
chrono = "0.4.19"
cjson = "0.1.1"
clap = { version= "3.2", features = ["derive"] }
cap-std-ext = "0.26"
cap-tempfile = "0.25"
flate2 = { features = ["zlib"], default_features = false, version = "1.0.20" }
Expand All @@ -34,7 +34,6 @@ pin-project = "1.0"
regex = "1.5.4"
serde = { features = ["derive"], version = "1.0.125" }
serde_json = "1.0.64"
structopt = "0.3.21"
tar = "0.4.38"
tempfile = "3.2.0"
term_size = "0.3.2"
Expand Down
Loading