Skip to content

Commit

Permalink
Merge pull request #167 from 0xcregis/166-build-toolchain-update-to-1750
Browse files Browse the repository at this point in the history
build: toolchain update to 1.75.0
  • Loading branch information
shuimuliang authored Dec 28, 2023
2 parents afa5b76 + c4d2400 commit c965b6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
rust-version: [1.74.0]
rust-version: [1.75.0]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion examples/anychain-bitcoin-client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ fn transaction_gen() {
),
];

for (_i, item) in inputs.iter().enumerate() {
for item in inputs.iter() {
let input = BitcoinTransactionInput::new(
hex::decode(item.0).unwrap(),
item.1,
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.74.0"
channel = "1.75.0"
components = ["clippy", "rustfmt"]
targets = []
profile = "minimal"

0 comments on commit c965b6d

Please sign in to comment.