mirror of
https://github.com/pcvolkmer/osc-variant.git
synced 2025-07-02 08:42:54 +00:00
Issue #12: Add command to unzip osb files
This commit is contained in:
10
Cargo.toml
10
Cargo.toml
@ -9,6 +9,9 @@ readme = "README.md"
|
||||
|
||||
build = "build.rs"
|
||||
|
||||
[workspace]
|
||||
members = ["libs/deob"]
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.4", features = ["std", "help", "usage", "derive", "error-context"], default-features = false }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
@ -18,6 +21,13 @@ console = "0.15"
|
||||
sha256 = "1.4"
|
||||
dialoguer = "0.11"
|
||||
|
||||
deob = { path = "./libs/deob", optional = true }
|
||||
zip = { version = "0.6", optional = true }
|
||||
|
||||
[features]
|
||||
# Requires env var OSB_KEY to be present at build time
|
||||
unzip-osb = ["dep:deob", "dep:zip"]
|
||||
|
||||
[build-dependencies]
|
||||
clap = { version = "4.4", features = ["std", "help", "usage", "derive", "error-context"], default-features = false }
|
||||
clap_complete = "4.4"
|
||||
|
Reference in New Issue
Block a user