Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pr0n00gler committed Dec 21, 2022
1 parent 050ad0e commit 1e9d9c5
Show file tree
Hide file tree
Showing 14 changed files with 87 additions and 131 deletions.
154 changes: 55 additions & 99 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions artifacts/checksums.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
5a752bebfa54f3eaf2e93ab30fcb3df3f011ae4bee0a98576db3d527ab5c2161 ibc_transfer.wasm
a94019b4c7a0f40fd643b5092fcc1d1f6fdc4d45ec6354b7faf9e0036cabb0f0 neutron_interchain_queries.wasm
411e97a618b1b36c87909c7630d9d898876524b368825ed5b2d59c8bf4a094f1 neutron_interchain_txs.wasm
6c36f6953f5dff64381c7a8cfe93ef93f0b30b2715970023f84662c0279b3683 neutron_validators_test.wasm
105a855247f10cf087e1cade5f12a65a5e5bd2550f3d145e7fde17929134dcad reflect.wasm
1c464063a6755ac10ee89452855bf4626f30a214feabae6ee527b4df6ce55170 ibc_transfer.wasm
b7ca3f944c6671f66ed05ca08a72f376471d0732747212cec0e9cceef87387a7 neutron_interchain_queries.wasm
0cbf5a6537c87379f79ce0c18b53ba9567ba8241fe45f875ff3485ca593467b5 neutron_interchain_txs.wasm
6ccbcad30bb8cef52ff5740d66882a7cb59c366dbd90b5c8f9c0bab0bdd9e0fe neutron_validators_test.wasm
070e30620d189da7a0fb21e4dc748c8d2d15f35ba0f6445a16eb9bc817c75d3a reflect.wasm
10 changes: 5 additions & 5 deletions artifacts/checksums_intermediate.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
2cc7b156be2601fbe03630325bed16c1b9230c72e85bfb8ef0e16fabccd1da5a target/wasm32-unknown-unknown/release/ibc_transfer.wasm
baddf282847837960320c189b70da0006ce1b4c56d58ae187fa62d82c44b1865 target/wasm32-unknown-unknown/release/neutron_interchain_queries.wasm
33b694f034e685e338009b34c367501fa1a9f238d7f0c62c2562d2d39effefb5 target/wasm32-unknown-unknown/release/neutron_interchain_txs.wasm
4ec8a0804f485bf7b2bf750228a1bf84f36e4d44ea15426a51d4587d88d96bbe target/wasm32-unknown-unknown/release/neutron_validators_test.wasm
fc1db59525b8463b62f252632931da5a4af7a7f2ced7d58ca964641e3ad1c449 target/wasm32-unknown-unknown/release/reflect.wasm
fb7325cf35d53aef1fd833cf5f43b4ef28bcc88b9c4e3de88e05e20b8625e846 target/wasm32-unknown-unknown/release/ibc_transfer.wasm
4a8d5ebde439bfecc3f24dac4b66eb5c6550285e15db83c505d14af696187bea target/wasm32-unknown-unknown/release/neutron_interchain_queries.wasm
6c57719e44d77487537d0b1f73dc54f1f7f8a2e8edaf28828ec66b7d5e8f7267 target/wasm32-unknown-unknown/release/neutron_interchain_txs.wasm
9e6864d11a044bb8a397b2d0183cd1d622ba0201573578f6841e64f722c9ba6e target/wasm32-unknown-unknown/release/neutron_validators_test.wasm
59ca165fcddee953b0479a484dfeb577fc2744305119b09e817cc33d06d7fb91 target/wasm32-unknown-unknown/release/reflect.wasm
Binary file modified artifacts/ibc_transfer.wasm
Binary file not shown.
Binary file modified artifacts/neutron_interchain_queries.wasm
Binary file not shown.
Binary file modified artifacts/neutron_interchain_txs.wasm
Binary file not shown.
Binary file modified artifacts/neutron_validators_test.wasm
Binary file not shown.
Binary file modified artifacts/reflect.wasm
Binary file not shown.
6 changes: 3 additions & 3 deletions contracts/ibc_transfer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ library = []

[dependencies]
cosmwasm-std = { version = "1.0.0", features = ["staking", "stargate"] }
cw2 = "0.15.1"
cw2 = "1.0.1"
schemars = "0.8.10"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
serde-json-wasm = { version = "0.4.1" }
cw-storage-plus = { version = "0.14.0", features = ["iterator"]}
neutron-sdk = { git = "https://github.com/neutron-org/neutron-contracts.git", branch = "neutron_audit_oak_19_09_2022_fixes", default-features = false, version = "0.1.0"}
cw-storage-plus = { version = "1.0.1", features = ["iterator"]}
neutron-sdk = "0.1.0"
protobuf = { version = "3.2.0", features = ["with-bytes"] }

[dev-dependencies]
Expand Down
10 changes: 5 additions & 5 deletions contracts/neutron_interchain_queries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ library = []

[dependencies]
cosmwasm-std = { version = "1.0.0", features = ["staking"] }
cw2 = "0.15.1"
cw2 = "1.0.1"
schemars = "0.8.10"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
neutron-sdk = { git = "https://github.com/neutron-org/neutron-contracts.git", branch = "neutron_audit_oak_19_09_2022_fixes", default-features = false, version = "0.1.0"}
base64 = "0.13.0"
cosmos-sdk-proto = { version = "0.14.0", default-features = false }
cw-storage-plus = { version = "0.14.0", features = ["iterator"]}
neutron-sdk = "0.1.0"
base64 = "0.20.0"
cosmos-sdk-proto = { version = "0.16.0", default-features = false }
cw-storage-plus = { version = "1.0.1", features = ["iterator"]}
prost = "0.11"
serde-json-wasm = "0.4.1"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@
]
},
"path": {
"description": "*path** is a path to the storage (storage prefix) where you want to read value by key (usually name of cosmos-sdk module: 'staking', 'bank', etc.)",
"description": "*path** is a path to the storage (storage prefix) where you want to read value by key (usually name of cosmos-packages module: 'staking', 'bank', etc.)",
"type": "string"
}
}
Expand Down
10 changes: 5 additions & 5 deletions contracts/neutron_interchain_txs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ library = []

[dependencies]
cosmwasm-std = { version = "1.0.0", features = ["staking"] }
cw2 = "0.15.1"
cw2 = "1.0.1"
schemars = "0.8.10"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
serde-json-wasm = { version = "0.4.1" }
cw-storage-plus = { version = "0.14.0", features = ["iterator"]}
cosmos-sdk-proto = { version = "0.14.0", default-features = false }
neutron-sdk = { git = "https://github.com/neutron-org/neutron-contracts.git", branch = "neutron_audit_oak_19_09_2022_fixes", default-features = false, version = "0.1.0"}
base64 = "0.13.0"
cw-storage-plus = { version = "1.0.1", features = ["iterator"]}
cosmos-sdk-proto = { version = "0.16.0", default-features = false }
neutron-sdk = "0.1.0"
base64 = "0.20.0"
protobuf = { version = "3.2.0", features = ["with-bytes"] }
prost = "0.11"
prost-types = "0.11"
Expand Down
Loading

0 comments on commit 1e9d9c5

Please sign in to comment.