Last active
March 9, 2021 08:42
-
-
Save harshvishu/b49b9a4c97be1ed922a47b3f215bde6c to your computer and use it in GitHub Desktop.
'Blockchain in Rust' snippets
This file contains hidden or 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
[package] | |
name = "blockchain" | |
version = "0.1.0" | |
authors = ["Harsh Vishwakarma"] | |
edition = "2018" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
chrono = { version = " 0.4", features = ["serde"] } | |
serde = { version = "1.0.118", features = ["derive"] } | |
serde_json = "1.0" | |
rocket = "0.4.6" | |
reqwest = { version = "0.11", features = ["blocking", "json"] } | |
rocket_contrib = {version = "0.4.6", default-features = false, features = ["json"]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment