grin/core/Cargo.toml
Ignotus Peverell 38d5d67e79
Add features bitmask to Block, Output, Kernel; coinbase validation
Block, Output and Kernel now have bitmasks to hold supported
features and eventually versioning. Will make adding features and
updates easier and open the possibility of soft forks.

First added feature for Output and Kernel is the marking of coinbase
related ones. Allows the validation of the coinbase part of a block.
2017-03-23 17:06:00 -07:00

17 lines
344 B
TOML

[package]
name = "grin_core"
version = "0.1.0"
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
[dependencies]
bitflags = "~0.7.0"
byteorder = "^0.5"
num-bigint = "^0.1.35"
rust-crypto = "^0.2"
rand = "^0.3"
serde = "~0.9.10"
serde_derive = "~0.9.10"
time = "^0.1"
tiny-keccak = "1.1"
secp256k1zkp = { path = "../secp256k1zkp" }