bitcoin_wallet/
lib.rs

1//
2// Copyright 2018-2019 Tamas Blummer
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17#![deny(non_upper_case_globals)]
18#![deny(non_camel_case_types)]
19#![deny(non_snake_case)]
20#![deny(unused_mut)]
21#![deny(unused_must_use)]
22#![forbid(unsafe_code)]
23
24extern crate bitcoin;
25extern crate bitcoin_hashes;
26extern crate crypto;
27#[cfg(test)]
28extern crate hex;
29extern crate rand;
30extern crate secp256k1;
31extern crate serde;
32#[macro_use]
33extern crate serde_derive;
34#[cfg(test)]
35extern crate serde_json;
36
37pub mod account;
38pub mod coins;
39pub mod context;
40pub mod error;
41pub mod mnemonic;
42pub mod proved;
43pub mod sss;