diff --git a/Cargo.toml b/Cargo.toml index 9ab0ba3..c90f049 100644 --- a/Cargo.toml +++ b/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 } \ No newline at end of file diff --git a/tests/memory_keccak.rs b/tests/memory_keccak.rs index 417184b..e3d8a6c 100644 --- a/tests/memory_keccak.rs +++ b/tests/memory_keccak.rs @@ -1,5 +1,5 @@ use hex_literal::hex; -use pmtree::*; +use vacp2p_pmtree::*; use std::collections::HashMap; use tiny_keccak::{Hasher as _, Keccak}; diff --git a/tests/sled_keccak.rs b/tests/sled_keccak.rs index 61db6a3..85e51f5 100644 --- a/tests/sled_keccak.rs +++ b/tests/sled_keccak.rs @@ -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};