Skip to content

Commit c723f3f

Browse files
authored
Unused variable + cargo info (#15)
1 parent 2831d1c commit c723f3f

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

Cargo.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ name = "rs-merkle-tree"
33
version = "0.1.0"
44
edition = "2021"
55
resolver = "2"
6+
description = "Merkle tree implementation in Rust with configurable storage backends and hash functions. Fixed depth and incremental only. Optimized for fast proof generation."
7+
license = "MIT"
8+
repository = "https://github.com/bilinearlabs/rs-merkle-tree"
9+
homepage = "https://www.bilinearlabs.io"
10+
readme = "README.md"
11+
keywords = ["merkle", "proof", "tree"]
12+
categories = ["cryptography", "data-structures"]
13+
exclude = ["/target/*", "/.github/*", "/**/*.svg"]
614

715
[lib]
816
name = "rs_merkle_tree"

src/tree.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ use std::collections::HashMap;
1010
#[cfg(feature = "memory_store")]
1111
use crate::stores::MemoryStore;
1212

13-
pub const MAX_DEPTH: usize = 32;
14-
1513
pub struct MerkleProof<const DEPTH: usize> {
1614
pub proof: [Node; DEPTH],
1715
pub leaf: Node,

0 commit comments

Comments
 (0)