Skip to content

Commit

Permalink
fuzz: Use path in manifest instead of version
Browse files Browse the repository at this point in the history
Using `path` instead of `version` makes the `fuzz` crate easier to
maintain because we don't have to update the version number to do
releases.
  • Loading branch information
tcharding committed Mar 21, 2024
1 parent 6ff8505 commit d38cb8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cargo-fuzz = true

[dependencies]
honggfuzz = { version = "0.5.55", default-features = false }
bitcoin = { version = "0.31.0", features = [ "serde" ] }
bitcoin = { path = "../bitcoin", features = [ "serde" ] }

serde = { version = "1.0.103", features = [ "derive" ] }
serde_json = "1.0"
Expand Down

0 comments on commit d38cb8a

Please sign in to comment.