mirror of https://github.com/vacp2p/pmtree.git
fix: rename to vacp2p_pmtree
This commit is contained in:
parent
35c0d508a6
commit
b5c62d3a8d
15
Cargo.toml
15
Cargo.toml
|
@ -1,14 +1,15 @@
|
|||
[package]
|
||||
name = "pmtree"
|
||||
name = "vacp2p_pmtree"
|
||||
version = "1.0.0"
|
||||
edition = "2021"
|
||||
license = "MIT OR Apache-2.0"
|
||||
description = "Persistent Merkle Tree in Rust"
|
||||
|
||||
[dev-dependencies]
|
||||
hex-literal = "0.3.4"
|
||||
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
|
||||
sled = "0.34.7"
|
||||
rln = { git = "https://github.com/vacp2p/zerokit", rev = "490206a" }
|
||||
ark-serialize = "0.3.0"
|
||||
hex-literal = "=0.3.4"
|
||||
tiny-keccak = { version = "=2.0.2", features = ["keccak"] }
|
||||
sled = "=0.34.7"
|
||||
ark-serialize = "=0.3.0"
|
||||
|
||||
[dependencies]
|
||||
rayon = { version = "1.6.1", optional = false }
|
||||
rayon = { version = "=1.7.0", optional = false }
|
|
@ -1,5 +1,5 @@
|
|||
use hex_literal::hex;
|
||||
use pmtree::*;
|
||||
use vacp2p_pmtree::*;
|
||||
use std::collections::HashMap;
|
||||
use tiny_keccak::{Hasher as _, Keccak};
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use hex_literal::hex;
|
||||
use pmtree::*;
|
||||
use vacp2p_pmtree::*;
|
||||
use std::collections::HashMap;
|
||||
use std::fs;
|
||||
use tiny_keccak::{Hasher as _, Keccak};
|
||||
|
|
Loading…
Reference in New Issue