mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2024-11-10 18:15:18 +00:00
37 lines
1008 B
TOML
37 lines
1008 B
TOML
[package]
|
|
name = "merkle_light"
|
|
version = "0.4.0"
|
|
authors = [
|
|
"Ivan Prisyazhnyy <john.koepi@gmail.com>"
|
|
]
|
|
edition = "2021"
|
|
|
|
description = "Light merkle tree implementation with SPV support and dependency agnostic."
|
|
license = "BSD-3-Clause"
|
|
homepage = "https://github.com/sitano/merkle_light"
|
|
repository = "https://github.com/sitano/merkle_light"
|
|
documentation = "https://sitano.github.io/merkle_light/merkle_light/index.html"
|
|
readme = "README.md"
|
|
keywords = ["merkle", "merkle-tree", "no_std"]
|
|
categories = ["data-structures", "cryptography"]
|
|
|
|
[dependencies]
|
|
|
|
rayon = "1.5.3"
|
|
|
|
[dev-dependencies]
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[package.metadata.release]
|
|
sign-commit = true
|
|
upload-doc = true
|
|
doc-branch = "gh-pages"
|
|
pre-release-commit-message = "Release version {{version}}."
|
|
pro-release-commit-message = "Start next development iteration {{version}}."
|
|
tag-message = "Release version {{version}}."
|
|
doc-commit-message = "Update documentation."
|
|
dev-version-ext = "pre"
|