Skip to content

Commit

Permalink
Add metadata to Cargo.toml, remove local deps
Browse files Browse the repository at this point in the history
  • Loading branch information
afilini committed Dec 21, 2020
1 parent 2c7a283 commit c910668
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ name = "bdk"
version = "0.2.0-rc.1"
edition = "2018"
authors = ["Alekos Filini <[email protected]>", "Riccardo Casatta <[email protected]>"]
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"] }
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit c910668

Please sign in to comment.