Skip to content

Commit fed768c

Browse files
committed
specify MSRV for clippy, fix Cargo.toml
1 parent 67bb3da commit fed768c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "bitcoind"
3-
version = "0.28.1"
3+
version = "0.29.0"
44
authors = ["Riccardo Casatta <[email protected]>"]
55
description = "Utility to run a regtest bitcoind process, useful in integration testing environment"
66
license = "MIT"
77
repository = "https://github.com/RCasatta/bitcoind"
88
documentation = "https://docs.rs/bitcoind/"
9-
rust-version = "1.57"
9+
rust-version = "1.41.1" # without features, with any feature is 1.57
1010
edition = "2018"
1111

1212
[dependencies]

clippy.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
msrv = "1.41.1"

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,6 @@ impl BitcoinD {
295295
conf_args
296296
);
297297

298-
#[allow(clippy::needless_borrow)] // would break 1.41.1 if fixed
299298
let mut process = Command::new(exe.as_ref())
300299
.args(&default_args)
301300
.args(&p2p_args)

0 commit comments

Comments
 (0)