From 6efc66b26d5bb555c65fdf999b3636e5edfae68e Mon Sep 17 00:00:00 2001 From: Davidson Souza Date: Mon, 28 Aug 2023 19:15:05 -0300 Subject: [PATCH] Fix subcrates version --- crates/floresta/Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/crates/floresta/Cargo.toml b/crates/floresta/Cargo.toml index 48c2b7f9..73fb444f 100644 --- a/crates/floresta/Cargo.toml +++ b/crates/floresta/Cargo.toml @@ -23,13 +23,13 @@ keywords = ["bitcoin", "utreexo", "node", "blockchain", "rust"] categories = ["bitcoin", "blockchain", "node"] [dependencies] -floresta-common = { path = "../floresta-common" } -floresta-chain = { path = "../floresta-chain" } -floresta-wire = { path = "../floresta-wire" } +floresta-common = { path = "../floresta-common", version = "0.1.0" } +floresta-chain = { path = "../floresta-chain", version = "0.1.0" } +floresta-wire = { path = "../floresta-wire", version = "0.1.0" } floresta-watch-only = { path = "../floresta-watch-only", features = [ "memory-database", -], optional = true } -floresta-electrum = { path = "../floresta-electrum", optional = true } +], optional = true, version = "0.1.0" } +floresta-electrum = { path = "../floresta-electrum", optional = true, version = "0.1.0" } [dev-dependencies] rustreexo = "0.1.0"