diff --git a/Cargo.lock b/Cargo.lock index 19311b58..7071a3f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1711,9 +1711,9 @@ dependencies = [ [[package]] name = "injective-test-tube" -version = "1.13.0-1" +version = "1.13.0-2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c4c7836812f2797d1ddba6c83d56a9c1b7c2eeef9b1771767556941af9959f34" +checksum = "14100ae915701e78f31faf33e06e53cc0eeae27f693003d9fbad426234e1acd5" dependencies = [ "base64 0.21.7", "bindgen", diff --git a/Cargo.toml b/Cargo.toml index 8b63dbb2..65737d07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,24 +24,24 @@ injective-cosmwasm = { version = "0.3.0" } injective-math = { version = "0.3.0" } injective-std = { version = "1.13.0" } injective-std-derive = { version = "1.13.0" } -injective-test-tube = { version = "=1.13.0-1" } +injective-test-tube = { version = "=1.13.0-2" } injective-testing = { version = "0.2.1" } -itertools = "0.10.3" +itertools = { version = "0.10.3" } primitive-types = { version = "0.12.2", default-features = false } -proc-macro2 = "1.0.40" +proc-macro2 = { version = "1.0.40" } prost = { version = "0.12.6" } prost-types = { version = "0.12.6", default-features = false } -quote = "1.0.20" +quote = { version = "1.0.20" } rand = { version = "0.4.6" } schemars = { version = "0.8.16" } secp256k1 = { version = "0.6.2" } serde = { version = "1.0.196", default-features = false, features = [ "derive" ] } serde-cw-value = { version = "0.7.0" } serde-json-wasm = { version = "1.0.0" } -serde_repr = "0.1.17" +serde_repr = { version = "0.1.17" } serde_test = { version = "1.0.176" } subtle-encoding = { version = "0.5.1", features = [ "bech32-preview" ] } -syn = "1.0.98" +syn = { version = "1.0.98" } thiserror = { version = "1.0.56" } tiny-keccak = { version = "1.2.1" } trybuild = { version = "1.0.63", features = [ "diff" ] } diff --git a/contracts/atomic-order-example/Cargo.toml b/contracts/atomic-order-example/Cargo.toml index 97e8441c..347beaff 100644 --- a/contracts/atomic-order-example/Cargo.toml +++ b/contracts/atomic-order-example/Cargo.toml @@ -32,9 +32,9 @@ cosmwasm-storage = { workspace = true } cw-storage-plus = { workspace = true } cw-utils = { workspace = true } cw2 = { workspace = true } -injective-cosmwasm = { workspace = true } -injective-math = { workspace = true } -injective-std = { workspace = true } +injective-cosmwasm = { workspace = true, path = "../../packages/injective-cosmwasm" } +injective-math = { workspace = true, path = "../../packages/injective-math" } +injective-std = { workspace = true, path = "../../packages/injective-std" } prost = { workspace = true } schemars = { workspace = true } serde = { workspace = true } diff --git a/contracts/atomic-order-example/src/contract.rs b/contracts/atomic-order-example/src/contract.rs index 841094b4..0acb5f8c 100644 --- a/contracts/atomic-order-example/src/contract.rs +++ b/contracts/atomic-order-example/src/contract.rs @@ -154,7 +154,6 @@ fn handle_atomic_order_reply( .map_err(ContractError::SubMsgFailure) .unwrap(); - deps.api.debug(">>>>>>>>>>"); let first_messsage = binding.msg_responses.first(); let order_response = Exchange::MsgCreateSpotMarketOrderResponse::decode( diff --git a/contracts/dummy/Cargo.toml b/contracts/dummy/Cargo.toml index 31f336b2..fb07089b 100644 --- a/contracts/dummy/Cargo.toml +++ b/contracts/dummy/Cargo.toml @@ -30,7 +30,7 @@ optimize = """docker run --rm -v "$(pwd)":/code \ cosmwasm-std = { workspace = true } cw-storage-plus = { workspace = true } cw2 = { workspace = true } -injective-cosmwasm = { workspace = true } +injective-cosmwasm = { workspace = true, path = "../../packages/injective-cosmwasm" } schemars = { workspace = true } serde = { workspace = true } thiserror = { workspace = true } diff --git a/contracts/injective-cosmwasm-mock/Cargo.toml b/contracts/injective-cosmwasm-mock/Cargo.toml index cede0677..4a4274b0 100644 --- a/contracts/injective-cosmwasm-mock/Cargo.toml +++ b/contracts/injective-cosmwasm-mock/Cargo.toml @@ -26,9 +26,9 @@ cosmwasm-schema = { workspace = true } cosmwasm-std = { workspace = true } cw-storage-plus = { workspace = true } cw2 = { workspace = true } -injective-cosmwasm = { workspace = true } -injective-math = { workspace = true } -injective-std = { workspace = true } +injective-cosmwasm = { workspace = true, path = "../../packages/injective-cosmwasm" } +injective-math = { workspace = true, path = "../../packages/injective-math" } +injective-std = { workspace = true, path = "../../packages/injective-std" } prost = { workspace = true } schemars = { workspace = true } serde = { workspace = true } @@ -36,4 +36,4 @@ thiserror = { workspace = true } [dev-dependencies] injective-test-tube = { workspace = true } -injective-testing = { workspace = true } +injective-testing = { workspace = true, path = "../../packages/injective-testing" } diff --git a/packages/injective-cosmwasm/Cargo.toml b/packages/injective-cosmwasm/Cargo.toml index 0e53caa7..a318d3fc 100644 --- a/packages/injective-cosmwasm/Cargo.toml +++ b/packages/injective-cosmwasm/Cargo.toml @@ -14,7 +14,7 @@ cosmwasm-std = { workspace = true } cw-storage-plus = { workspace = true } ethereum-types = { workspace = true } hex = { workspace = true } -injective-math = { workspace = true } +injective-math = { workspace = true, path = "../../packages/injective-math" } schemars = { workspace = true } serde = { workspace = true } serde_repr = { workspace = true } diff --git a/packages/injective-std/Cargo.toml b/packages/injective-std/Cargo.toml index afa6b740..a94f6374 100644 --- a/packages/injective-std/Cargo.toml +++ b/packages/injective-std/Cargo.toml @@ -12,7 +12,7 @@ version = "1.13.0" [dependencies] chrono = { workspace = true } cosmwasm-std = { workspace = true } -injective-std-derive = { workspace = true } +injective-std-derive = { workspace = true, path = "../injective-std-derive" } prost = { workspace = true } prost-types = { workspace = true } schemars = { workspace = true } diff --git a/packages/injective-testing/Cargo.toml b/packages/injective-testing/Cargo.toml index 143d209b..3b74e360 100644 --- a/packages/injective-testing/Cargo.toml +++ b/packages/injective-testing/Cargo.toml @@ -12,8 +12,8 @@ anyhow = { workspace = true } base64 = { workspace = true } cosmwasm-std = { workspace = true } cw-multi-test = { workspace = true } -injective-cosmwasm = { workspace = true } -injective-math = { workspace = true } +injective-cosmwasm = { workspace = true, path = "../injective-cosmwasm" } +injective-math = { workspace = true, path = "../injective-math" } rand = { workspace = true } secp256k1 = { workspace = true } serde = { workspace = true }