Skip to content

Commit

Permalink
ci: fix cc and os_str_bytes MSRV errors
Browse files Browse the repository at this point in the history
  • Loading branch information
notmandatory committed Oct 16, 2023
1 parent a3bdf4c commit 3c71e2c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cont_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,11 @@ jobs:
cargo update -p rustls-webpki:0.101.6 --precise "0.101.1"
cargo update -p zip:0.6.6 --precise "0.6.2"
cargo update -p time --precise "0.3.13"
cargo update -p cc --precise "1.0.81"
cargo update -p byteorder --precise "1.4.3"
cargo update -p webpki --precise "0.22.2"
cargo update -p cc --precise "1.0.81"
cargo update -p jobserver --precise "0.1.26"
cargo update -p os_str_bytes --precise "6.5.1"
- name: Build
run: cargo build ${{ matrix.features }}
- name: Test
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,16 @@ cargo update -p rustls-webpki:0.101.6 --precise "0.101.1"
cargo update -p zip:0.6.6 --precise "0.6.2"
# time 0.3.14 has MSRV 1.59.0+
cargo update -p time --precise "0.3.13"
# cc 1.0.82 has MSRV 1.61.0+
cargo update -p cc --precise "1.0.81"
# byteorder 1.5.0 has MSRV 1.60.0+
cargo update -p byteorder --precise "1.4.3"
# webpki 0.22.4 requires `ring:0.17.2` which has MSRV 1.61.0+
cargo update -p webpki --precise "0.22.2"
# jobserver 0.1.27 has MSRV 1.66.0+
# cc 1.0.82 has MSRV 1.61.0+
cargo update -p cc --precise "1.0.81"
# jobserver 0.1.27 has MSRV 1.66.0
cargo update -p jobserver --precise "0.1.26"
# os_str_bytes 6.6.0 has MSRV 1.61.0
cargo update -p os_str_bytes --precise "6.5.1"
```

## License
Expand Down
6 changes: 0 additions & 6 deletions crates/bdk/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,6 @@ pub enum Error {
Generic(String),
/// Happens when trying to spend an UTXO that is not in the internal database
UnknownUtxo,
// /// Thrown when a tx is not found in the internal database
// TransactionNotFound,
// /// Happens when trying to bump a transaction that is already confirmed
// TransactionConfirmed,
// /// Trying to replace a tx that has a sequence >= `0xFFFFFFFE`
// IrreplaceableTransaction,
/// Node doesn't have data to estimate a fee rate
FeeRateUnavailable,
/// Error while working with [`keys`](crate::keys)
Expand Down

0 comments on commit 3c71e2c

Please sign in to comment.