Remove misleading version metadata
The metadata in dependency specification was misleading because the version was not guaranteed to be the same anyway this was correctly linted but nobody so far cared to fix it. This change fixes it and adds a hint how to get the real version for people who are mistakenly investigating wrong file.
This commit is contained in:
parent
c00faa0458
commit
c9053511b2
|
@ -36,7 +36,8 @@ units = { package = "bitcoin-units", version = "0.1.0", default-features = false
|
||||||
|
|
||||||
base64 = { version = "0.22.0", optional = true }
|
base64 = { version = "0.22.0", optional = true }
|
||||||
ordered = { version = "0.2.0", optional = true }
|
ordered = { version = "0.2.0", optional = true }
|
||||||
bitcoinconsensus = { version = "0.106.0+26", default-features = false, optional = true }
|
# `bitcoinconsensus` version includes metadata which indicates the version of Core. Use `cargo tree` to see it.
|
||||||
|
bitcoinconsensus = { version = "0.106.0", default-features = false, optional = true }
|
||||||
|
|
||||||
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ], optional = true }
|
serde = { version = "1.0.103", default-features = false, features = [ "derive", "alloc" ], optional = true }
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue