Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ueco-jb committed Oct 13, 2021
1 parent ce6e507 commit b655b99
Show file tree
Hide file tree
Showing 8 changed files with 72 additions and 67 deletions.
62 changes: 32 additions & 30 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions contracts/dso-token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ crate-type = ["cdylib", "rlib"]
backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
cosmwasm-std = { version = "0.16.0" }
cw-storage-plus = "0.8.0"
cw20-base = { version = "0.8.0", features = ["library"] }
cw2 = "0.8.0"
cw4 = "0.8.0"
cw20 = "0.8.0"
cosmwasm-std = "=1.0.0-beta"
cw-storage-plus = "=0.10"
cw20-base = { version = "=0.10", features = ["library"] }
cw2 = "=0.10"
cw4 = "=0.10"
cw20 = "=0.10"
schemars = "0.8.1"
serde = { version = "1.0.125", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.24" }

[dev-dependencies]
anyhow = "1"
cosmwasm-schema = { version = "0.16.0" }
cw-multi-test = "0.8.1"
cw4-group = "0.8.0"
cosmwasm-schema = "=1.0.0-beta"
cw-multi-test = "=0.10"
cw4-group = "=0.10"
derivative = "2"
18 changes: 9 additions & 9 deletions contracts/tfi-factory/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,23 @@ backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
tfi = { path = "../../packages/tfi", default-features = false, version = "0.1.0"}
cosmwasm-std = { version = "0.16.0", features = ["iterator"] }
cw-storage-plus = { version = "0.8.0", features = ["iterator"]}
cosmwasm-std = { version = "=1.0.0-beta", features = ["iterator"] }
cw-storage-plus = { version = "=0.10", features = ["iterator"]}
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
protobuf = { version = "2", features = ["with-bytes"] }
thiserror = "1"

[dev-dependencies]
cosmwasm-schema = "0.16.0"
cosmwasm-storage = { version = "0.16.0", features = ["iterator"] }
cosmwasm-schema = "=1.0.0-beta"
cosmwasm-storage = { version = "=1.0.0-beta", features = ["iterator"] }
anyhow = { version = "1", features = ["backtrace"] }
cw-multi-test = "0.8.1"
cw-multi-test = "=0.10"
tfi-pair = { path = "../tfi-pair", version = "0.1" }
dso-token = { path = "../dso-token", version = "0.1" }
derivative = "2"
cw4-group = { version = "0.8", features = ["library"] }
cw4 = "0.8"
cw20 = "0.8"
cw20-base = { version = "0.8", features = ["library"] }
cw4-group = { version = "=0.10", features = ["library"] }
cw4 = "=0.10"
cw20 = "=0.10"
cw20-base = { version = "=0.10", features = ["library"] }

16 changes: 8 additions & 8 deletions contracts/tfi-pair/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ backtraces = ["cosmwasm-std/backtraces"]
[dependencies]
integer-sqrt = "0.1.5"
tfi = { path = "../../packages/tfi", default-features = false, version = "0.1.0"}
cw2 = { version = "0.8.0" }
cw20 = { version = "0.8.0" }
cosmwasm-std = { version = "0.16.0" }
cw-storage-plus = { version = "0.8.0" }
cw2 = "=0.10"
cw20 = "=0.10"
cosmwasm-std = "=1.0.0-beta"
cw-storage-plus = "=0.10"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
thiserror = { version = "1.0.20" }

[dev-dependencies]
cosmwasm-schema = "0.16.0"
cosmwasm-storage = { version = "0.16.0", features = ["iterator"] }
cw20-base = { version = "0.8.0", features = ["library"] }
cw-multi-test = { version = "0.8.1" }
cosmwasm-schema = "=1.0.0-beta"
cosmwasm-storage = { version = "=1.0.0-beta", features = ["iterator"] }
cw20-base = { version = "=0.10", features = ["library"] }
cw-multi-test = { version = "=0.10" }
tfi-mocks = { path = "../../packages/mocks", version = "0.1.0"}
derivative = "2"
anyhow = { version = "1", features = ["backtrace"] }
6 changes: 3 additions & 3 deletions packages/mocks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ homepage = "https://tgrade.finance"

[dependencies]
tfi = { path = "../tfi", version = "0.1.0" }
cw20 = { version = "0.8.0-rc1" }
cosmwasm-storage = { version = "0.16.0" }
cosmwasm-std = { version = "0.16.0" }
cw20 = "=0.10"
cosmwasm-storage = "=1.0.0-beta"
cosmwasm-std = "=1.0.0-beta"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
3 changes: 3 additions & 0 deletions packages/mocks/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ use cw20::{BalanceResponse as Cw20BalanceResponse, Cw20QueryMsg, TokenInfoRespon
use tfi::asset::PairInfo;
use tfi::factory::QueryMsg as FactoryQueryMsg;

use std::marker::PhantomData;

/// mock_dependencies is a drop-in replacement for cosmwasm_std::testing::mock_dependencies
/// this uses our CustomQuerier.
pub fn mock_dependencies(
Expand All @@ -21,6 +23,7 @@ pub fn mock_dependencies(
storage: MockStorage::default(),
api: MockApi::default(),
querier: custom_querier,
custom_query_type: PhantomData
}
}

Expand Down
8 changes: 4 additions & 4 deletions packages/tfi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ homepage = "https://tgrade.finance"
backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
cw20 = { version = "0.8.0-rc1" }
cosmwasm-storage = { version = "0.16.0" }
cosmwasm-std = { version = "0.16.0" }
cw20 = "=0.10"
cosmwasm-storage = "=1.0.0-beta"
cosmwasm-std = "=1.0.0-beta"
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

[dev-dependencies]
cosmwasm-schema = "0.16.0"
cosmwasm-schema = "=1.0.0-beta"
tfi-mocks = { path = "../mocks", version = "0.1.0" }

8 changes: 4 additions & 4 deletions packages/trusted-circle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ homepage = "https://tgrade.finance"
backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
cosmwasm-std = { version = "0.16.0" }
cosmwasm-std = "=1.0.0-beta"
schemars = "0.8.1"
cw0 = "0.8"
cw3 = "0.8"
cw0 = "=0.10"
cw3 = "=0.10"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

[dev-dependencies]
cosmwasm-schema = "0.16.0"
cosmwasm-schema = "=1.0.0-beta"

0 comments on commit b655b99

Please sign in to comment.