Skip to content

Commit 5a6cc66

Browse files
committed
Merge #308: reduce MSRV to 1.74.0
f16771c reduce MSRV to 1.74.0 (Andrew Poelstra) Pull request description: We increased our MSRV to 1.78.0 because (a) we needed 1.70 or higher for libfuzzer, and (b) LWK is using 1.78.0. However, we don't expect LWK to be the primary user of this crate -- if we want to copy somebody, we should copy rust-bitcoin, who recently moved up from 1.63 to 1.74. ACKs for top commit: canndrew: ACK f16771c Tree-SHA512: 30ac9e089ed9794f22b35db3c9d6443bd8ca524a00c4405a55c097cbf5a564ec6f6716468e0295d3f2e1971366dbada38752fddfd0a96db96f596a772f591a01
2 parents 6f245ec + f16771c commit 5a6cc66

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/BlockstreamResearch/rust-simplicity/"
88
documentation = "https://docs.rs/simplicity-lang/"
99
description = "General purpose library for processing Simplicity programs"
1010
edition = "2021"
11-
rust-version = "1.78.0"
11+
rust-version = "1.74.0"
1212

1313
[features]
1414
base64 = ["bitcoin/base64"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ and undergoing rapid development. We especially welcome improvements in:
115115

116116
## Minimum Supported Rust Version
117117

118-
The MSRV of this crate is **1.78.0**. For now we will not increase this without
118+
The MSRV of this crate is **1.74.0**. For now we will not increase this without
119119
a major version bump, though as the library matures we may change that policy.
120120

121121
## Updating libsimplicity

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
msrv = "1.78.0"
1+
msrv = "1.74.0"
22

33
# Default 250, not sure what units. But it does not like the generic node stuff.
44
type-complexity-threshold = 1000

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "simplicity-fuzz"
33
edition = "2021"
4-
rust-version = "1.78.0"
4+
rust-version = "1.74.0"
55
version = "0.0.1"
66
authors = ["Generated by fuzz/generate-files.sh"]
77
publish = false

fuzz/generate-files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cat > "$REPO_DIR/fuzz/Cargo.toml" <<EOF
1212
[package]
1313
name = "simplicity-fuzz"
1414
edition = "2021"
15-
rust-version = "1.78.0"
15+
rust-version = "1.74.0"
1616
version = "0.0.1"
1717
authors = ["Generated by fuzz/generate-files.sh"]
1818
publish = false

simplicity-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repository = "https://github.com/BlockstreamResearch/rust-simplicity/"
77
documentation = "https://docs.rs/simplicity-sys/"
88
description = "FFI bindings to libsimplicity"
99
edition = "2021"
10-
rust-version = "1.78.0"
10+
rust-version = "1.74.0"
1111
build = "build.rs"
1212
links = "rustsimplicity_0_5"
1313

0 commit comments

Comments
 (0)