Skip to content

Commit

Permalink
Merge pull request #4191 from anoma/mergify/bp/maint-libs-0.46/pr-4190
Browse files Browse the repository at this point in the history
switch to published usize-set (previously index-set) (backport #4190)
  • Loading branch information
mergify[bot] authored Dec 16, 2024
2 parents 0aa59d2 + 19a1f75 commit 457e349
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 33 deletions.
21 changes: 11 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ ibc = { git = "https://github.com/heliaxdev/cosmos-ibc-rs", rev = "38bd2a32f3511
ibc-derive = { git = "https://github.com/heliaxdev/cosmos-ibc-rs", rev = "38bd2a32f35117d4d9165a3c68c64ccd87ad56dd" }
ibc-testkit = { git = "https://github.com/heliaxdev/cosmos-ibc-rs", rev = "38bd2a32f35117d4d9165a3c68c64ccd87ad56dd", default-features = false }
ics23 = "0.12.0"
index-set = { git = "https://github.com/heliaxdev/index-set", tag = "v0.8.1", features = ["serialize-borsh", "serialize-serde"] }
usize-set = { version = "0.10.3", features = ["serialize-borsh", "serialize-serde"] }
indexmap = { git = "https://github.com/heliaxdev/indexmap", tag = "2.2.4-heliax-1", features = ["borsh-schema", "serde"] }
init-once = "0.6.0"
itertools = "0.12.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ eyre.workspace = true
ibc.workspace = true
ics23.workspace = true
impl-num-traits = "0.1.2"
index-set.workspace = true
usize-set.workspace = true
indexmap.workspace = true
k256.workspace = true
lazy_static = { workspace = true, optional = true }
Expand Down
3 changes: 2 additions & 1 deletion crates/core/src/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ use std::str::FromStr;
use arse_merkle_tree::InternalKey;
use borsh::{BorshDeserialize, BorshSchema, BorshSerialize};
use data_encoding::BASE32HEX_NOPAD;
use index_set::vec::VecIndexSet;
use namada_macros::BorshDeserializer;
#[cfg(feature = "migrations")]
use namada_migrations::*;
use serde::{Deserialize, Serialize};
use thiserror::Error;
use usize_set::vec::VecIndexSet;
use usize_set::IndexSet;

use super::key::common;
use crate::address::{self, Address, PARAMETERS};
Expand Down
21 changes: 11 additions & 10 deletions wasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions wasm_for_tests/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 457e349

Please sign in to comment.