Skip to content

Commit c3b86f5

Browse files
committed
bump MSRV to 1.58 (temporarily?); add santiago dependency
1 parent 2210656 commit c3b86f5

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
matrix:
7878
rust:
7979
- stable
80-
- 1.48.0
80+
- 1.58.0
8181
- beta
8282
- nightly
8383
steps:
@@ -93,7 +93,7 @@ jobs:
9393
env:
9494
FEATURES: bitcoin elements test-utils
9595
run: |
96-
if cargo --version | grep "1\.48"; then
96+
if cargo --version | grep "1\.58"; then
9797
# 1.0.100 uses syn 2.0 which requires edition 2021
9898
cargo update -p serde_json --precise 1.0.99
9999
# 1.0.157 uses syn 2.0
@@ -102,6 +102,8 @@ jobs:
102102
cargo update -p quote --precise 1.0.30
103103
# 1.0.66 uses edition 2021
104104
cargo update -p proc-macro2 --precise 1.0.65
105+
# 1.8.0 requires cargo 1.60+
106+
cargo update -p regex --precise 1.7.0
105107
fi
106108
for f in $FEATURES; do echo "Features: $f" && cargo test --no-default-features --features="$f"; done
107109
echo "No default features" && cargo test --no-default-features

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ byteorder = "1.3"
2121
elements = { version = "0.22.0", optional = true }
2222
hashes = { package = "bitcoin_hashes", version = "0.12" }
2323
hex = { package = "hex-conservative", version = "0.1.1" }
24+
santiago = "1.3"
2425
simplicity-sys = { version = "0.1.0", path = "./simplicity-sys" }
2526
actual-serde = { package = "serde", version = "1.0.103", features = ["derive"], optional = true }
2627

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Under development....
55

66
# Minimum Supported Rust Version
77

8-
The MSRV of this crate is **1.48.0**.
8+
The MSRV of this crate is **1.58.0**.
99

1010
# Updating jets code
1111

0 commit comments

Comments
 (0)