-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Handle the `fram` error message in a way that mitigates a firmware bug * CLI: resync on open * upgrade base64 * update the firmware parsing regex
- Loading branch information
1 parent
3ce7aad
commit 635c96d
Showing
7 changed files
with
49 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "coldcard-cli" | ||
version = "0.12.0" | ||
version = "0.12.1" | ||
edition = "2021" | ||
authors = ["Alfred Hodler <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -17,8 +17,8 @@ name = "coldcard" | |
path = "src/main.rs" | ||
|
||
[dependencies] | ||
coldcard = { version = "0.12.0", path = "../coldcard" } | ||
base64 = "0.13.0" | ||
coldcard = { version = "0.12.1", path = "../coldcard" } | ||
base64 = "0.21.7" | ||
clap = { version = "3.1.6", features = ["derive"] } | ||
hex = "0.4.3" | ||
hmac-sha256 = "1.1.7" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "coldcard" | ||
version = "0.12.0" | ||
version = "0.12.1" | ||
edition = "2021" | ||
authors = ["Alfred Hodler <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -17,8 +17,8 @@ linux-static-libusb = ["hidapi/linux-static-libusb"] | |
[dependencies] | ||
aes-ctr = "0.6.0" | ||
base58 = "0.2.0" | ||
bitcoin_hashes = "0.12.0" | ||
bitcoin_hashes = "0.13.0" | ||
hidapi = { version = "2.4.1", default-features = false } | ||
k256 = { version = "0.13.1", features = ["arithmetic"] } | ||
log = { version = "0.4.17", optional = true } | ||
k256 = { version = "0.13.3", features = ["arithmetic"] } | ||
log = { version = "0.4.20", optional = true } | ||
rand = "0.8.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters