Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 31 additions & 4 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ coins-bip32 = { version = "0.13", optional = true }
# tinyhumansai/openhuman: +3 packages for no functional change.
#
# Revisit when `coins-bip32` moves, and only then.
sha3 = { version = "0.10", optional = true }
sha3 = { version = "0.12", optional = true }
# Async trait methods for the `client` queries, which take `&dyn Transport`.
async-trait = { version = "0.1", optional = true }
# BIP-39 mnemonic -> seed. Pinned to the same 0.8 line OpenHuman used before
Expand Down
2 changes: 1 addition & 1 deletion crates/tinywallet-bus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ sha2 = { version = "0.11", optional = true }
# crate's `coins-bip32` line depends on `sha3` 0.10 and is not going to move, so
# 0.10 is already in the graph of any consumer that also takes the root crate
# with `key`. Asking for 0.12 here does not replace it, it ADDS a second copy.
sha3 = { version = "0.10", optional = true }
sha3 = { version = "0.12", optional = true }
# Async trait methods for the `Transport` seam in `src/rpc/`. Rust cannot yet
# express an object-safe async trait natively, and `Transport` must be
# `dyn`-compatible because chain code takes `&dyn Transport`.
Expand Down