Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded dependencies #164

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ workflows:
jobs:
build_and_test:
docker:
- image: rust:1.65.0
- image: rust:1.70
working_directory: ~/project
steps:
- checkout
Expand All @@ -42,8 +42,8 @@ jobs:
command: cargo update
- restore_cache:
keys:
- cargocache-v2-multi-test:1.65.0-{{ checksum "Cargo.lock" }}
- cargocache-v2-multi-test:1.65.0-
- cargocache-v2-multi-test:1.70-{{ checksum "Cargo.lock" }}
- cargocache-v2-multi-test:1.70-
- run:
name: Build library for native target
command: cargo build --locked
Expand All @@ -54,7 +54,7 @@ jobs:
paths:
- /usr/local/cargo/registry
- target
key: cargocache-v2-multi-test:1.65.0-{{ checksum "Cargo.lock" }}
key: cargocache-v2-multi-test:1.70-{{ checksum "Cargo.lock" }}

build_minimal:
docker:
Expand All @@ -70,7 +70,7 @@ jobs:
command: rm Cargo.lock
- restore_cache:
keys:
- cargocache-v2-multi-test:1.65.0-minimal-{{ checksum "Cargo.toml" }}
- cargocache-v2-multi-test:1.70-minimal-{{ checksum "Cargo.toml" }}
- run:
name: Build library for native target
command: cargo build -Zminimal-versions --all-features
Expand All @@ -81,11 +81,11 @@ jobs:
paths:
- /usr/local/cargo/registry
- target
key: cargocache-v2-multi-test:1.65.0-minimal-{{ checksum "Cargo.toml" }}
key: cargocache-v2-multi-test:1.70-minimal-{{ checksum "Cargo.toml" }}

build_maximal:
docker:
- image: rust:1.65.0
- image: rust:1.70
working_directory: ~/project/
steps:
- checkout
Expand All @@ -97,7 +97,7 @@ jobs:
command: cargo update
- restore_cache:
keys:
- cargocache-v2-multi-test:1.65.0-{{ checksum "Cargo.lock" }}
- cargocache-v2-multi-test:1.70-{{ checksum "Cargo.lock" }}
- run:
name: Build library for native target
command: cargo build --locked --all-features
Expand All @@ -108,11 +108,11 @@ jobs:
paths:
- /usr/local/cargo/registry
- target
key: cargocache-v2-multi-test:1.65.0-{{ checksum "Cargo.lock" }}
key: cargocache-v2-multi-test:1.70-{{ checksum "Cargo.lock" }}

lint:
docker:
- image: rust:1.65.0
- image: rust:1.70
steps:
- checkout
- run:
Expand All @@ -123,8 +123,8 @@ jobs:
command: cargo update
- restore_cache:
keys:
- cargocache-v2-lint-rust:1.65.0-{{ checksum "Cargo.lock" }}
- cargocache-v2-lint-rust:1.65.0-
- cargocache-v2-lint-rust:1.70-{{ checksum "Cargo.lock" }}
- cargocache-v2-lint-rust:1.70-
- run:
name: Add rustfmt component
command: rustup component add rustfmt
Expand All @@ -143,7 +143,7 @@ jobs:
- target/debug/.fingerprint
- target/debug/build
- target/debug/deps
key: cargocache-v2-lint-rust:1.65.0-{{ checksum "Cargo.lock" }}
key: cargocache-v2-lint-rust:1.70-{{ checksum "Cargo.lock" }}

coverage:
# https://circleci.com/developer/images?imageType=machine
Expand Down
95 changes: 43 additions & 52 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ backtrace = ["anyhow/backtrace"]
cosmwasm_2_0 = ["cosmwasm-std/cosmwasm_2_0"]

[dependencies]
anyhow = "1.0.81"
anyhow = "1.0.82"
bech32 = "0.11.0"
cosmwasm-std = { version = "2.0.0", features = ["iterator", "staking", "stargate"] }
cosmwasm-std = { version = "2.0.1", features = ["iterator", "staking", "stargate"] }
cw-storage-plus = "2.0.0"
cw-utils = "2.0.0"
derivative = "2.2.0"
itertools = "0.12.1"
prost = "0.12.3"
prost = "0.12.4"
schemars = "0.8.16"
serde = "1.0.197"
serde = "1.0.198"
sha2 = "0.10.8"
thiserror = "1.0.58"

Expand Down