Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
jleni committed May 9, 2024
1 parent be36848 commit 44b24fd
Show file tree
Hide file tree
Showing 16 changed files with 200 additions and 135 deletions.
170 changes: 117 additions & 53 deletions app/rust/Cargo.lock

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

4 changes: 2 additions & 2 deletions app/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
authors = ["Zondax AG <hello@zondax.ch>"]
name = "rslib"
version = "0.1.0"
version = "0.0.0"
edition = "2021"
readme = "README.md"
resolver = "2"
Expand All @@ -19,7 +19,7 @@ rand = { version = "0.8", default-features = false }
blake2b_simd = { version = "1", default-features = false }
blake2s_simd = { version = "1", default-features = false }
group = { version = "0.13", default-features = false }
chacha20poly1305 = { version = "0.5", default-features = false, features = ["heapless", "chacha20"] }
chacha20poly1305 = { version = "0.10.1", default-features = false, features = ["heapless"] }

binary-ff1 = { version = "0.1.0", default-features = false }
aes = { version = "=0.3", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion app/rust/src/bitstreamer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ mod tests {
shift: 8,
carry: 0,
};
assert_eq!(streamer.peek(), true);
assert!(streamer.peek());
}

#[test]
Expand Down

0 comments on commit 44b24fd

Please sign in to comment.