[package] name = "nimiq-blockchain" version = "0.2.0" authors = ["The Nimiq Core Development Team "] edition = "2018" description = "Persistent block storage for Nimiq's Rust implementation" homepage = "https://nimiq.com" repository = "https://github.com/nimiq/core-rs" license = "Apache-2.0" categories = ["cryptography::cryptocurrencies"] keywords = ["nimiq", "cryptocurrency", "blockchain"] [badges] travis-ci = { repository = "nimiq/core-rs", branch = "master" } is-it-maintained-issue-resolution = { repository = "nimiq/core-rs" } is-it-maintained-open-issues = { repository = "nimiq/core-rs" } maintenance = { status = "experimental" } [dependencies] parking_lot = "0.7" log = "0.4" hex = "0.3" failure = "0.1" beserial = { path = "../beserial", version = "0.2" } beserial_derive = { path = "../beserial/beserial_derive", version = "0.2" } nimiq-keys = { path = "../keys", version = "0.2" } nimiq-primitives = { path = "../primitives", version = "0.2" } nimiq-account = { path = "../primitives/account", version = "0.2" } nimiq-block = { path = "../primitives/block", version = "0.2" } nimiq-transaction = { path = "../primitives/transaction", version = "0.2" } nimiq-hash = { path = "../hash", version = "0.2" } nimiq-accounts = { path = "../accounts", version = "0.2" } nimiq-database = { path = "../database", version = "0.2", features = ["full-nimiq"] } nimiq-tree-primitives = { path = "../accounts/tree-primitives", version = "0.2" } fixed-unsigned = { path = "../fixed-unsigned", version = "0.2" } nimiq-utils = { path = "../utils", version = "0.2", features = ["observer", "unique-ptr", "iterators"] } nimiq-network-primitives = { path = "../network-primitives", version = "0.2", features = ["networks", "time"] } [dev-dependencies] atomic = "0.4" [features] default = ["transaction-store"] metrics = [] transaction-store = []