starling 2.1.0-nightly.0

This tree structure is a binary merkle tree with branch compression via split indexes.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
edition = "2018"
name = "starling"
version = "2.1.0-nightly.0"
authors = ["Josiah Evans <koreanhalo@gmail.com>"]
description = "This tree structure is a binary merkle tree with branch compression via split indexes."
readme = "README.md"
keywords = ["binary", "merkle", "tree", "patricia"]
categories = ["data-structures", "memory-management"]
license = "MIT"
repository = "https://github.com/ChosunOne/merkle_bit"

[[bench]]
name = "merkle_bit_benches"
harness = false
[dependencies.bincode]
version = "1.1.2"
optional = true

[dependencies.blake2-rfc]
version = "0.2.18"
optional = true

[dependencies.groestl]
version = "0.8.0"
optional = true

[dependencies.hashbrown]
version = "0.1.8"
optional = true

[dependencies.openssl]
version = "0.10.19"
optional = true

[dependencies.ron]
version = "0.4.2"
optional = true

[dependencies.serde]
version = "1.0.89"
features = ["derive"]
optional = true

[dependencies.serde-pickle]
version = "0.4.1"
optional = true

[dependencies.serde_cbor]
version = "0.9.0"
optional = true

[dependencies.serde_json]
version = "1.0.39"
optional = true

[dependencies.serde_yaml]
version = "0.8.8"
optional = true

[dependencies.tiny-keccak]
version = "1.4.2"
optional = true
[dev-dependencies.bincode]
version = "1.1.2"

[dev-dependencies.criterion]
version = "0.2.10"

[dev-dependencies.rand]
version = "0.6.5"

[dev-dependencies.rocksdb]
version = "0.11.0"

[dev-dependencies.serde]
version = "1.0.89"
features = ["derive"]

[features]
default = []
default_tree = []
use_bincode = ["default_tree", "serde", "bincode"]
use_blake2b = ["default_tree", "blake2-rfc"]
use_cbor = ["default_tree", "serde", "serde_cbor"]
use_groestl = ["default_tree", "groestl"]
use_hashbrown = ["default_tree", "hashbrown"]
use_json = ["default_tree", "serde", "serde_json"]
use_keccak = ["default_tree", "tiny-keccak"]
use_pickle = ["default_tree", "serde", "serde-pickle"]
use_ron = ["default_tree", "serde", "ron"]
use_serde = ["default_tree", "serde"]
use_sha2 = ["default_tree", "openssl"]
use_sha3 = ["default_tree", "tiny-keccak"]
use_yaml = ["default_tree", "serde", "serde_yaml"]