fix lock and rkn files

This commit is contained in:
Rostyslav Tyshko 2023-07-28 11:32:02 +02:00
parent ff0e157383
commit b888043f52
2 changed files with 28 additions and 27 deletions

53
Cargo.lock generated
View File

@ -2412,14 +2412,6 @@ dependencies = [
"plotters-backend", "plotters-backend",
] ]
[[package]]
name = "pmtree"
version = "1.0.0"
source = "git+https://github.com/vacp2p/pmtree?rev=4521c44#4521c4406551fecd8f2e8543233e73e5061686e7"
dependencies = [
"rayon",
]
[[package]] [[package]]
name = "ppv-lite86" name = "ppv-lite86"
version = "0.2.17" version = "0.2.17"
@ -2718,8 +2710,8 @@ dependencies = [
"sled", "sled",
"thiserror", "thiserror",
"tiny-keccak", "tiny-keccak",
"utils",
"wasmer", "wasmer",
"zerokit_utils",
] ]
[[package]] [[package]]
@ -3506,29 +3498,21 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
[[package]]
name = "utils"
version = "0.1.0"
dependencies = [
"ark-bn254 0.4.0",
"ark-ff 0.4.1",
"color-eyre 0.6.2",
"criterion 0.4.0",
"hex-literal",
"num-bigint",
"num-traits",
"pmtree",
"serde",
"sled",
"tiny-keccak",
]
[[package]] [[package]]
name = "uuid" name = "uuid"
version = "1.3.2" version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dad5567ad0cf5b760e5665964bec1b47dfd077ba8a2544b513f3556d3d239a2" checksum = "4dad5567ad0cf5b760e5665964bec1b47dfd077ba8a2544b513f3556d3d239a2"
[[package]]
name = "vacp2p_pmtree"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bee78790de52d6774ea318eb747a488fd5d96055bfe75ec2e7f605b15e21c664"
dependencies = [
"rayon",
]
[[package]] [[package]]
name = "valuable" name = "valuable"
version = "0.1.0" version = "0.1.0"
@ -4273,3 +4257,20 @@ dependencies = [
"quote", "quote",
"syn 2.0.16", "syn 2.0.16",
] ]
[[package]]
name = "zerokit_utils"
version = "0.1.0"
dependencies = [
"ark-bn254 0.4.0",
"ark-ff 0.4.1",
"color-eyre 0.6.2",
"criterion 0.4.0",
"hex-literal",
"num-bigint",
"num-traits",
"serde",
"sled",
"tiny-keccak",
"vacp2p_pmtree",
]

View File

@ -39,7 +39,7 @@ once_cell = "=1.17.1"
rand = "=0.8.5" rand = "=0.8.5"
rand_chacha = "=0.3.1" rand_chacha = "=0.3.1"
tiny-keccak = { version = "=2.0.2", features = ["keccak"] } tiny-keccak = { version = "=2.0.2", features = ["keccak"] }
utils = { version = "=0.1.0", path = "../utils/", default-features = false } utils = { package = "zerokit_utils", version = "=0.1.0", path = "../utils/", default-features = false }
# serialization # serialization
serde_json = "=1.0.96" serde_json = "=1.0.96"