-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathlib.rs
76 lines (69 loc) · 1.34 KB
/
lib.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#![feature(vec_into_raw_parts)]
#![cfg_attr(feature = "use-allocator", no_std)]
#![cfg_attr(feature = "use-allocator", feature(alloc_error_handler))]
extern crate alloc;
mod bindings;
mod trng;
#[cfg(feature = "use-allocator")]
mod allocator;
#[cfg(feature = "use-allocator")]
mod my_alloc;
#[allow(unused)]
mod common;
#[allow(unused)]
mod wallet;
#[cfg(feature = "test_cmd")]
#[allow(unused)]
mod test_cmd;
//chains
#[cfg(feature = "aptos")]
#[allow(unused)]
mod aptos;
#[cfg(feature = "arweave")]
#[allow(unused)]
mod arweave;
#[cfg(feature = "avalanche")]
#[allow(unused)]
mod avalanche;
#[cfg(feature = "bitcoin")]
#[allow(unused)]
mod bitcoin;
#[cfg(feature = "cardano")]
#[allow(unused)]
mod cardano;
#[cfg(feature = "cosmos")]
#[allow(unused)]
mod cosmos;
#[cfg(feature = "ethereum")]
#[allow(unused)]
mod ethereum;
#[cfg(feature = "monero")]
#[allow(unused)]
mod monero;
#[cfg(feature = "near")]
#[allow(unused)]
mod near;
#[cfg(feature = "solana")]
#[allow(unused)]
mod solana;
#[cfg(feature = "stellar")]
#[allow(unused)]
mod stellar;
#[cfg(feature = "sui")]
#[allow(unused)]
mod sui;
#[cfg(feature = "ton")]
#[allow(unused)]
mod ton;
#[cfg(feature = "tron")]
#[allow(unused)]
mod tron;
#[cfg(feature = "xrp")]
#[allow(unused)]
mod xrp;
#[cfg(feature = "zcash")]
#[allow(unused)]
mod zcash;
#[cfg(feature = "simulator")]
#[allow(unused)]
mod simulator;