20 releases (breaking)

0.16.0 Oct 19, 2022
0.15.0-rkyv.0 May 18, 2022
0.14.0-rc.0 Feb 23, 2022
0.11.0-rc.0 Nov 4, 2021
0.4.0 Jun 10, 2020

#950 in Cryptography

Download history 33/week @ 2023-12-04 33/week @ 2023-12-11 3/week @ 2024-01-01 25/week @ 2024-01-08 47/week @ 2024-01-15 31/week @ 2024-01-22 131/week @ 2024-01-29 160/week @ 2024-02-05 312/week @ 2024-02-12 314/week @ 2024-02-19 214/week @ 2024-02-26 42/week @ 2024-03-04 36/week @ 2024-03-11 55/week @ 2024-03-18

380 downloads per month
Used in 2 crates (via zk-citadel)

MPL-2.0 license

20KB
451 lines

Dusk CI codecov

nstack

nstack is a stack-like merkle datastructure for storing and accessing indexed values.

Operations supported are add and remove at the end of the structure, and mutable access to indexed leaves.

Usage example

use nstack::annotation::Cardinality;
use nstack::NStack;

let mut nt = NStack::<i32, Cardinality>::new();

nt.push(0);
nt.push(1);

// mutable references to the last element
if let Some(mut branch) = nt.nth_mut(1) {
    *branch = 2;
}

assert_eq!(nt.pop(), Some(2));
assert_eq!(nt.pop(), Some(0));

lib.rs:

NStack

A stack data structure with indexed lookup.

Dependencies

~43KB