Skip to content

Commit

Permalink
Updated Cargo.toml with secp256k1, sha2, serde, and serde_json
Browse files Browse the repository at this point in the history
  • Loading branch information
slanesuke committed Mar 25, 2024
1 parent 15ba5b1 commit b6f9063
Show file tree
Hide file tree
Showing 3 changed files with 204 additions and 0 deletions.
198 changes: 198 additions & 0 deletions mine-your-first-block/Cargo.lock

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

4 changes: 4 additions & 0 deletions mine-your-first-block/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
secp256k1 = "0.28.2"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
sha2 = "0.10.8"
2 changes: 2 additions & 0 deletions mine-your-first-block/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
fn main() {
println!("Hello, world!");
}

// Start processing transactions, validating them,

0 comments on commit b6f9063

Please sign in to comment.