diff --git a/Cargo.lock b/Cargo.lock
index 699d6fa..564aa3e 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1,10 +1,10 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
-name = "adler"
-version = "1.0.2"
+name = "adler32"
+version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
+checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
[[package]]
name = "ansi_term"
@@ -26,12 +26,6 @@ dependencies = [
"winapi",
]
-[[package]]
-name = "autocfg"
-version = "1.0.1"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
-
[[package]]
name = "bitflags"
version = "1.2.1"
@@ -81,6 +75,12 @@ version = "1.0.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3c69b077ad434294d3ce9f1f6143a2a4b89a8a2d54ef813d85003a4fd1137fd"
+[[package]]
+name = "cfg-if"
+version = "0.1.10"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
+
[[package]]
name = "cfg-if"
version = "1.0.0"
@@ -119,7 +119,7 @@ version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a"
dependencies = [
- "cfg-if",
+ "cfg-if 1.0.0",
]
[[package]]
@@ -128,7 +128,7 @@ version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d34cfa13a63ae058bfa601fe9e313bbdb3746427c1459185464ce0fcf62e1e8"
dependencies = [
- "cfg-if",
+ "cfg-if 1.0.0",
"libc",
"redox_syscall",
"winapi",
@@ -136,11 +136,11 @@ dependencies = [
[[package]]
name = "flate2"
-version = "1.0.20"
+version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0"
+checksum = "2cfff41391129e0a856d6d822600b8d71179d46879e310417eb9c762eb178b42"
dependencies = [
- "cfg-if",
+ "cfg-if 0.1.10",
"crc32fast",
"libc",
"miniz_oxide",
@@ -180,12 +180,11 @@ dependencies = [
[[package]]
name = "miniz_oxide"
-version = "0.4.4"
+version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
+checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
dependencies = [
- "adler",
- "autocfg",
+ "adler32",
]
[[package]]
@@ -398,7 +397,9 @@ dependencies = [
[[package]]
name = "zip"
-version = "0.5.10"
+version = "0.5.11"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8264fcea9b7a036a4a5103d7153e988dbc2ebbafb34f68a3c2d404b6b82d74b6"
dependencies = [
"byteorder",
"bzip2 0.3.3",
diff --git a/Cargo.toml b/Cargo.toml
index af1f663..f72c758 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -21,9 +21,11 @@ clap = "2.33.3"
tar = "0.4.33"
xz2 = "0.1.6"
bzip2 = "0.4.2"
-flate2 = "1.0.20"
+flate2 = "1.0.14"
+zip = "0.5.11"
-# Keeping zip locally since upstream zip is staying on an older flate2 version
-# in order to not increase MSRV, which is not something I particularly care about
-# for ouch
-zip = { version = "0.5.10", path = "./third-party/zip" }
+
+[profile.release]
+lto = true
+codegen-units = 1
+opt-level = 3
diff --git a/README.md b/README.md
index 720069f..28b8fc7 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,7 @@
```
ouch 0.1.0
+Vinícius R. Miguel
ouch is a unified compression & decompression utility
USAGE:
@@ -24,8 +25,8 @@ FLAGS:
-V, --version Prints version information
OPTIONS:
- -i, --input ... Input files (TODO description)
- -o, --output