Skip to content

Commit 436de8e

Browse files
committed
Merge rust-bitcoin#4297: chore: remove unused serde_json dep
6ba0e46 chore: remove unused serde_json dep (lfg2) Pull request description: checked by [shear](https://github.com/boshen/cargo-shear) ``` bitcoin_hashes -- hashes/Cargo.toml: serde_json Fixed 1 dependencies! ``` cargo +nightly build in local env is ok, local cargo.lock is ok(not include serde_json) so no need update cargo.lock ``` [[package]] name = "bitcoin_hashes" version = "0.16.0" dependencies = [ "bitcoin-internals", "hex-conservative 0.3.0", "serde", "serde_test", ] ``` but check CI seems need update `error: the lock file /home/runner/work/rust-bitcoin/rust-bitcoin/Cargo.lock needs to be updated but --locked was passed to prevent this If you want to try to generate the lock file without accessing the network, remove the --locked flag and use --offline instead.` ACKs for top commit: Kixunil: ACK 6ba0e46 apoelstra: ACK 6ba0e46; successfully ran local tests Tree-SHA512: 68a444e05876733af9606d4489ca30a18c9d3439dedf932e40db67dcfdb5ae40ab0f8cf937146f6b1ef92edc626dcb27a441b63c283e6945aa8071500bcc43a4
2 parents 59524ad + 6ba0e46 commit 436de8e

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

Cargo-minimal.lock

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,6 @@ dependencies = [
149149
"bitcoin-internals",
150150
"hex-conservative 0.3.0",
151151
"serde",
152-
"serde_json",
153152
"serde_test",
154153
]
155154

Cargo-recent.lock

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,6 @@ dependencies = [
148148
"bitcoin-internals",
149149
"hex-conservative 0.3.0",
150150
"serde",
151-
"serde_json",
152151
"serde_test",
153152
]
154153

hashes/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ serde = { version = "1.0", default-features = false, optional = true }
2828

2929
[dev-dependencies]
3030
serde_test = "1.0"
31-
serde_json = "1.0"
3231

3332
[package.metadata.docs.rs]
3433
all-features = true

0 commit comments

Comments
 (0)