Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
harmless-tech committed Mar 20, 2024
1 parent 882bb3b commit 9d2d2b0
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 26 deletions.
44 changes: 22 additions & 22 deletions Cargo.lock

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

11 changes: 8 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "qstract"
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["harmless-tech"]
description = "A basic tar/zip extraction program"
Expand All @@ -22,11 +22,11 @@ include = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.80"
anyhow = "1.0.81"
flate2 = "1.0.28"
hex = "0.4.3"
pico-args = { version = "0.5.0", features = ["eq-separator"] }
rc-zip-sync = { version = "4.0.0", default-features = false, features = ["deflate", "deflate64"] }
rc-zip-sync = { version = "4.1.0", default-features = false, features = ["deflate", "deflate64"] }
sha2 = "0.10.8"
sha3 = "0.10.8"
tar = "0.4.40"
Expand All @@ -38,11 +38,16 @@ codegen-units = 1
debug = false
strip = true
panic = "abort"
split-debuginfo = "off"

[profile.small]
inherits = "release"
opt-level = "s"

[profile.zmall]
inherits = "release"
opt-level = "z"

[profile.quick-build]
inherits = "release"
opt-level = 0
Expand Down
3 changes: 2 additions & 1 deletion rustfmt.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
unstable_features = true
newline_style = "Native"
control_brace_style = "ClosingNextLine"
single_line_if_else_max_width = 100
reorder_imports = true
imports_granularity = "Crate"
edition = "2021"
single_line_if_else_max_width = 100
single_line_let_else_max_width = 100

0 comments on commit 9d2d2b0

Please sign in to comment.