2020-01-17 14:27:28 +01:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
2019-01-07 11:33:07 +01:00
|
|
|
// This file is part of Parity Ethereum.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-06-20 10:06:49 +02:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-06-20 10:06:49 +02:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-06-20 10:06:49 +02:00
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
// #![warn(missing_docs)]
|
|
|
|
|
|
|
|
extern crate edit_distance;
|
Delete crates from parity-ethereum and fetch them from parity-common instead (#9083)
Use crates from parity-common: hashdb, keccak-hash, kvdb, kvdb-memorydb, kvdb-rocksdb, memorydb, parity-bytes, parity-crypto, path, patricia_trie, plain_hasher, rlp, target, test-support, trie-standardmap, triehash
2018-07-10 14:59:19 +02:00
|
|
|
extern crate parity_crypto;
|
2017-12-01 09:40:07 +01:00
|
|
|
extern crate parity_wordlist;
|
2018-06-22 15:09:15 +02:00
|
|
|
extern crate serde;
|
2016-06-20 00:10:34 +02:00
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2018-06-22 15:09:15 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
2017-07-14 20:40:28 +02:00
|
|
|
|
2016-06-20 00:10:34 +02:00
|
|
|
mod brain;
|
2017-12-01 09:40:07 +01:00
|
|
|
mod brain_prefix;
|
2018-06-22 15:09:15 +02:00
|
|
|
mod password;
|
2016-06-20 00:10:34 +02:00
|
|
|
mod prefix;
|
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
pub mod brain_recover;
|
2017-03-02 12:27:41 +01:00
|
|
|
|
2017-12-01 09:40:07 +01:00
|
|
|
pub use self::parity_wordlist::Error as WordlistError;
|
2016-06-20 00:10:34 +02:00
|
|
|
pub use self::brain::Brain;
|
2017-12-01 09:40:07 +01:00
|
|
|
pub use self::brain_prefix::BrainPrefix;
|
2018-06-22 15:09:15 +02:00
|
|
|
pub use self::password::Password;
|
2019-10-23 13:03:46 +02:00
|
|
|
pub use self::prefix::Prefix;
|