diff --git a/Cargo.lock b/Cargo.lock index 5b543ef638..81feb55cae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5245,6 +5245,7 @@ dependencies = [ "namada_migrations", "namada_replay_protection", "regex", + "serde", "smooth-operator", "thiserror", "tracing", diff --git a/crates/storage/Cargo.toml b/crates/storage/Cargo.toml index 6612b42dbb..470c72caf8 100644 --- a/crates/storage/Cargo.toml +++ b/crates/storage/Cargo.toml @@ -33,6 +33,7 @@ borsh.workspace = true itertools.workspace = true linkme = {workspace = true, optional = true} regex.workspace = true +serde.workspace = true smooth-operator.workspace = true thiserror.workspace = true tracing.workspace = true diff --git a/crates/tests/src/integration/ledger_tests.rs b/crates/tests/src/integration/ledger_tests.rs index ca3b081d14..23e8acf5a5 100644 --- a/crates/tests/src/integration/ledger_tests.rs +++ b/crates/tests/src/integration/ledger_tests.rs @@ -13,7 +13,7 @@ use namada_apps_lib::wallet::defaults::{self, albert_keypair}; use namada_core::dec::Dec; use namada_core::hash::Hash; use namada_core::storage::{DbColFam, Epoch, Key}; -use namada_core::token::{Amount, NATIVE_MAX_DECIMAL_PLACES}; +use namada_core::token::NATIVE_MAX_DECIMAL_PLACES; use namada_node::shell::testing::client::run; use namada_node::shell::testing::node::NodeResults; use namada_node::shell::testing::utils::{Bin, CapturedOutput}; diff --git a/wasm/Cargo.lock b/wasm/Cargo.lock index fc3cfdfce6..fe08f81667 100644 --- a/wasm/Cargo.lock +++ b/wasm/Cargo.lock @@ -3976,6 +3976,7 @@ dependencies = [ "namada_migrations", "namada_replay_protection", "regex", + "serde", "smooth-operator", "thiserror", "tracing", diff --git a/wasm_for_tests/Cargo.lock b/wasm_for_tests/Cargo.lock index c37b4ab2e0..cc34f08061 100644 --- a/wasm_for_tests/Cargo.lock +++ b/wasm_for_tests/Cargo.lock @@ -3925,6 +3925,7 @@ dependencies = [ "namada_merkle_tree", "namada_replay_protection", "regex", + "serde", "smooth-operator", "thiserror", "tracing",