Skip to content

Commit

Permalink
specify MSRV for clippy, fix Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
RCasatta committed Jan 5, 2023
1 parent 67bb3da commit fed768c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "bitcoind"
version = "0.28.1"
version = "0.29.0"
authors = ["Riccardo Casatta <riccardo@casatta.it>"]
description = "Utility to run a regtest bitcoind process, useful in integration testing environment"
license = "MIT"
repository = "https://github.com/RCasatta/bitcoind"
documentation = "https://docs.rs/bitcoind/"
rust-version = "1.57"
rust-version = "1.41.1" # without features, with any feature is 1.57
edition = "2018"

[dependencies]
Expand Down
1 change: 1 addition & 0 deletions clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
msrv = "1.41.1"
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ impl BitcoinD {
conf_args
);

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

0 comments on commit fed768c

Please sign in to comment.