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:
parent
6ff850539a
commit
d38cb8af9e
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue