From 521fcab16f7daa14e2041199e11e17c52c8ea2f0 Mon Sep 17 00:00:00 2001 From: Erwan <7871622+erwanor@users.noreply.github.com> Date: Thu, 13 Apr 2023 09:22:52 -0400 Subject: [PATCH] cargo: rely on `ics23@0.10.0` + bump ver (#90) * cargo: rely on `ics23@0.10.0` + bump ver * cargo: fix mistake * cargo: add `version` --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 835abac..f68b350 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jmt" -version = "0.4.1" +version = "0.4.2" authors = [ "Penumbra Labs ", "Diem Association ", @@ -22,7 +22,6 @@ std = ["dep:thiserror"] metrics = ["std", "dep:prometheus", "dep:once_cell"] [dependencies] -ics23 = { git = "https://github.com/penumbra-zone/ics23", branch = "compare-prehashed-keys", optional = true } anyhow = "1.0.38" borsh = "0.10.0" hashbrown = "0.13.2" @@ -38,6 +37,7 @@ prometheus = { version = "0.13", optional = true } sha2 = "0.10" hex = "0.4" tracing = "0.1" +ics23 = { version = "0.10.0", optional = true} [dev-dependencies] hex = { version = "0.4", features = ["serde"] }