From 1550f2b065c79dc2d2799db97a250c3b8854bbf1 Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Fri, 7 Feb 2020 12:27:10 +0100 Subject: [PATCH] Move everything in the root --- .gitignore | 3 +++ Cargo.toml | 22 ++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 Cargo.toml 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" -- 2.49.0