From: Alekos Filini Date: Mon, 21 Dec 2020 13:03:32 +0000 (+0100) Subject: Add metadata to Cargo.toml, remove local deps X-Git-Tag: v0.2.0~1 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/enum.EncodeError.html?a=commitdiff_plain;h=c910668ce3130bb35fed768c4f03aafa9a1e0abb;p=bdk Add metadata to Cargo.toml, remove local deps --- diff --git a/Cargo.toml b/Cargo.toml index 0fd46230..762ebc93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,16 @@ name = "bdk" version = "0.2.0-rc.1" edition = "2018" authors = ["Alekos Filini ", "Riccardo Casatta "] +homepage = "https://bitcoindevkit.org" +repository = "https://github.com/bitcoindevkit/bdk" +documentation = "https://docs.rs/bdk" +description = "A modern, lightweight, descriptor-based wallet library" +keywords = ["bitcoin", "wallet", "descriptor", "psbt"] +readme = "README.md" +license-file = "LICENSE" [dependencies] -bdk-macros = { version = "0.2.0", path = "./macros" } +bdk-macros = "0.2" log = "^0.4" miniscript = "4.0" bitcoin = { version = "^0.25.2", features = ["use-serde"] } @@ -57,8 +64,8 @@ test-electrum = ["electrum"] test-md-docs = ["base64", "electrum"] [dev-dependencies] -bdk-testutils = { version = "0.2.0", path = "./testutils" } -bdk-testutils-macros = { version = "0.2.0", path = "./testutils-macros" } +bdk-testutils = "0.2" +bdk-testutils-macros = "0.2" serial_test = "0.4" lazy_static = "1.4" rustyline = "6.0"