-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SFT-3538: Add foundation-firmware crate.
* Cargo.toml (workspace.dependencies): Add nom and secp256k1. * firmware/Cargo.toml: New cargo package. * firmware/src/lib.rs: New library file.
- Loading branch information
Showing
3 changed files
with
432 additions
and
0 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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "foundation-firmware" | ||
version = "0.1.0" | ||
description = "Firmware image format" | ||
edition = "2021" | ||
license = "GPL-3.0-or-later AND GPL-3.0-only" | ||
|
||
[dependencies] | ||
bitcoin_hashes = { workspace = true } | ||
nom = { workspace = true } | ||
secp256k1 = { workspace = true } |
Oops, something went wrong.