Move everything in the root

This commit is contained in:
Alekos Filini
2020-02-07 12:27:10 +01:00
parent a4c6005c7b
commit 4919ff148b
16 changed files with 6 additions and 6 deletions

21
src/lib.rs Normal file
View File

@@ -0,0 +1,21 @@
pub extern crate bitcoin;
extern crate log;
pub extern crate miniscript;
extern crate serde;
#[macro_use]
extern crate serde_json;
#[cfg(test)]
#[macro_use]
extern crate lazy_static;
#[cfg(any(feature = "key-value-db", feature = "default"))]
extern crate sled;
#[macro_use]
pub mod error;
pub mod database;
pub mod descriptor;
pub mod psbt;
pub mod signer;
pub mod types;