Skip to content

Commit

Permalink
Merge pull request #238 from InjectiveLabs/f/relative-paths-i-hate-you
Browse files Browse the repository at this point in the history
feat: added relative paths
  • Loading branch information
maxrobot authored Aug 12, 2024
2 parents 4e9b448 + cd435ba commit 95f1021
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 21 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" ] }
Expand Down
6 changes: 3 additions & 3 deletions contracts/atomic-order-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
1 change: 0 additions & 1 deletion contracts/atomic-order-example/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion contracts/dummy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
8 changes: 4 additions & 4 deletions contracts/injective-cosmwasm-mock/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ 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 }
thiserror = { workspace = true }

[dev-dependencies]
injective-test-tube = { workspace = true }
injective-testing = { workspace = true }
injective-testing = { workspace = true, path = "../../packages/injective-testing" }
2 changes: 1 addition & 1 deletion packages/injective-cosmwasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion packages/injective-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions packages/injective-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit 95f1021

Please sign in to comment.