From 7e4c4e7fc15e14a0568be7f375c55fc94cead9da Mon Sep 17 00:00:00 2001 From: maxrobot Date: Thu, 1 Aug 2024 16:10:21 +0100 Subject: [PATCH] fix: use defined package for injective-math --- Cargo.lock | 2 +- packages/injective-cosmwasm/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3f64a74..d20fd316 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1807,7 +1807,7 @@ dependencies = [ "cw-storage-plus 2.0.0", "ethereum-types", "hex", - "injective-math 0.2.4", + "injective-math 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", "schemars", "serde 1.0.202", "serde-json-wasm 1.0.1", diff --git a/packages/injective-cosmwasm/Cargo.toml b/packages/injective-cosmwasm/Cargo.toml index 5b5accf6..53148c87 100644 --- a/packages/injective-cosmwasm/Cargo.toml +++ b/packages/injective-cosmwasm/Cargo.toml @@ -14,7 +14,7 @@ cosmwasm-std = { version = "2.1.0", features = [ "abort", "cosmwasm_1_2", "co cw-storage-plus = { version = "2.0.0" } ethereum-types = { version = "0.5.2" } hex = { version = "0.4.3", features = [ "serde" ] } -injective-math = { version = "0.2.4", path = "../injective-math" } +injective-math = { version = "0.2.4" } schemars = "0.8.16" serde = { version = "1.0.193", default-features = false, features = [ "derive" ] } serde_repr = "0.1.17"