43bd5a56ff
We use crate renaming to remove grin prefix, as result imports for util and keychain crates start with crate:: which looks like a part of the current crate. This PR fixes it. Also some small improvements were made. If this approach works I'll replicate it to other crates.
37 lines
1.0 KiB
TOML
37 lines
1.0 KiB
TOML
[package]
|
|
name = "grin_core"
|
|
version = "3.0.0-alpha.1"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
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 = { package = "blake2-rfc", version = "0.2"}
|
|
byteorder = "1"
|
|
croaring = "0.3.9"
|
|
enum_primitive = "0.1"
|
|
failure = "0.1"
|
|
failure_derive = "0.1"
|
|
lazy_static = "1"
|
|
lru-cache = "0.1"
|
|
num = "0.2"
|
|
num-bigint = "0.2"
|
|
rand = "0.6"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
siphasher = "0.2"
|
|
uuid = { version = "0.6", features = ["serde", "v4"] }
|
|
log = "0.4"
|
|
chrono = { version = "0.4.4", features = ["serde"] }
|
|
zeroize = "0.9"
|
|
|
|
keychain = { package = "grin_keychain", path = "../keychain", version = "3.0.0-alpha.1" }
|
|
util = { package = "grin_util", path = "../util", version = "3.0.0-alpha.1" }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1"
|