mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 03:21:08 +03:00
e64f4fbcd1
* cuck placeholder * rustfmt * cuckatoo, early days * rustfmt * data structures are in place, siphash key creation is consistent with @tromp * solver in place, (not yet working) * cuckatoo test solver working with test nonce * rustfmt * update solver to remove adjacency list removals * verifier functioning * rustfmt * Proper error handing in Cuckatoo module, couple of tests * modify cuckoo/cuckatoo solvers and verifiers to function identically, in advance of trait refactoring * rustfmt * refactor PoW context into trait, default to using cuckoo context * rustfmt * create macros for integer casting/unwraps * don't instantiate structs when just verifying, add test validation vector for cuckatoo 29 * rustfmt * don't init cuckoo structs if just validating * test fix * ensure BH hashing for POW is only done within miner/validators
30 lines
633 B
TOML
30 lines
633 B
TOML
[package]
|
|
name = "grin_core"
|
|
version = "0.3.0"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
workspace = ".."
|
|
publish = false
|
|
|
|
[dependencies]
|
|
bitflags = "1"
|
|
blake2-rfc = "0.2"
|
|
byteorder = "1"
|
|
croaring = "=0.3"
|
|
failure = "0.1"
|
|
failure_derive = "0.1"
|
|
lazy_static = "1"
|
|
lru-cache = "0.1"
|
|
num = "0.2"
|
|
num-bigint = "0.2"
|
|
rand = "0.5"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
siphasher = "0.2"
|
|
slog = { version = "~2.3", features = ["max_level_trace", "release_max_level_trace"] }
|
|
chrono = "0.4.4"
|
|
|
|
grin_keychain = { path = "../keychain" }
|
|
grin_util = { path = "../util" }
|
|
|
|
[dev-dependencies]
|
|
grin_wallet = { path = "../wallet" }
|