forked from JeremyRubin/grin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
26 lines (23 loc) · 818 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
[package]
name = "grin_pool"
version = "1.0.0"
authors = ["Grin Developers <[email protected]>"]
description = "Chain implementation for grin, a simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
repository = "https://github.com/mimblewimble/grin"
keywords = [ "crypto", "grin", "mimblewimble" ]
workspace = '..'
edition = "2018"
[dependencies]
blake2-rfc = "0.2"
rand = "0.5"
serde = "1"
serde_derive = "1"
log = "0.4"
chrono = "0.4.4"
grin_core = { path = "../core", version = "1.0.0" }
grin_keychain = { path = "../keychain", version = "1.0.0" }
grin_store = { path = "../store", version = "1.0.0" }
grin_util = { path = "../util", version = "1.0.0" }
[dev-dependencies]
grin_chain = { path = "../chain", version = "1.0.0" }