Fix test dependencies

This commit is contained in:
Truman Kilen 2023-02-01 16:27:56 -06:00
parent 64ef7ac617
commit 8a5c46136e
3 changed files with 4 additions and 8 deletions

View file

@ -16,3 +16,7 @@ aes = "0.8"
flate2 = "1.0" flate2 = "1.0"
thiserror = "1.0" thiserror = "1.0"
sha1 = "0.10.5" sha1 = "0.10.5"
[dev-dependencies]
base64 = "0.21.0"
paste = "1.0.11"

7
unpak_cli/Cargo.lock generated
View file

@ -263,12 +263,6 @@ version = "6.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
[[package]]
name = "paste"
version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d01a5bd0424d00070b0098dd17ebca6f961a959dead1dbcbbbc1d1cd8d3deeba"
[[package]] [[package]]
name = "path-clean" name = "path-clean"
version = "0.1.0" version = "0.1.0"
@ -447,7 +441,6 @@ dependencies = [
"aes", "aes",
"base64", "base64",
"clap", "clap",
"paste",
"path-clean", "path-clean",
"unpak", "unpak",
] ]

View file

@ -11,6 +11,5 @@ path = "src/main.rs"
aes = "0.8" aes = "0.8"
base64 = "0.21.0" base64 = "0.21.0"
clap = { version = "4.1.4", features = ["derive"] } clap = { version = "4.1.4", features = ["derive"] }
paste = "1.0.11"
path-clean = "0.1.0" path-clean = "0.1.0"
unpak = { version = "0.2.0", path = ".." } unpak = { version = "0.2.0", path = ".." }