fuzz: Use path in manifest instead of version

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.
This commit is contained in:
Tobin C. Harding 2024-03-21 16:20:03 +11:00
parent 6ff850539a
commit d38cb8af9e
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ cargo-fuzz = true
[dependencies] [dependencies]
honggfuzz = { version = "0.5.55", default-features = false } 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 = { version = "1.0.103", features = [ "derive" ] }
serde_json = "1.0" serde_json = "1.0"