Skip to content

Instantly share code, notes, and snippets.

@harshvishu
Last active March 9, 2021 08:42
Show Gist options
  • Save harshvishu/b49b9a4c97be1ed922a47b3f215bde6c to your computer and use it in GitHub Desktop.
Save harshvishu/b49b9a4c97be1ed922a47b3f215bde6c to your computer and use it in GitHub Desktop.
'Blockchain in Rust' snippets
[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