From: Alekos Filini Date: Fri, 7 Feb 2020 11:27:10 +0000 (+0100) Subject: Move everything in the root X-Git-Tag: 0.1.0-beta.1~40 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/enum.EncodeError.html?a=commitdiff_plain;h=1550f2b065c79dc2d2799db97a250c3b8854bbf1;p=bdk-cli Move everything in the root --- diff --git a/.gitignore b/.gitignore index 1377554..8b75e7b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ +/target +Cargo.lock + *.swp diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..81e268f --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "magical-bitcoin-wallet" +version = "0.1.0" +authors = ["Riccardo Casatta ", "Alekos Filini "] + +[dependencies] +log = "^0.4" +bitcoin = { version = "0.23", features = ["use-serde"] } +miniscript = { version = "0.12" } +serde = { version = "^1.0", features = ["derive"] } +serde_json = { version = "^1.0" } +base64 = "^0.11" + +# Optional dependencies +sled = { version = "0.31.0", optional = true } + +[features] +default = ["sled"] +key-value-db = ["sled"] + +[dev-dependencies] +lazy_static = "1.4.0"