Skip to content

Commit

Permalink
Dependency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Sechko committed Sep 13, 2023
1 parent adf375a commit 7a8a32e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
7 changes: 4 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "schnauzer"
version = "0.3.4"
version = "0.3.5"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Arsynth/schnauzer"
Expand All @@ -18,5 +18,5 @@ scroll = { version = "0.11.0", features = ["derive"] }
uuid = "1.3.1"
colored = "2"
getopts = "0.2.21"
kex = "0.1.8"
schnauzer-derive = { version = "0.1.0", path = "schnauzer-derive" }
kex = "0.2.6"
schnauzer-derive = { version = "0.1.0", path = "schnauzer-derive" }
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ __TEXT __cstring

```toml
[dependencies]
schnauzer = "0.3.4"
schnauzer = "0.3.5"
```

### Examples
Expand Down
3 changes: 3 additions & 0 deletions src/output/hex.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,14 @@ pub(crate) fn dump_section(sect: &Section) -> Result<()> {
Separators::new("", &": ".green().to_string()),
)),
ByteFormatter::new(
Default::default(),
Groupping::RepeatingGroup(Group::new(4, " "), 4),
Default::default(),
sect.endian.is_little(),
Default::default(),
),
Some(CharFormatter::new(".".dimmed().to_string(), Default::default())),
false
);

let mut printer = Printer::new(stdout(), sect.addr.0 as usize, config);
Expand Down

0 comments on commit 7a8a32e

Please sign in to comment.