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
#![doc = include_str!("../README.md")]

#[cfg(feature = "alloc")]
pub extern crate alloc;
#[cfg(feature = "core")]
pub extern crate core;
#[cfg(feature = "std")]
pub extern crate std;

pub mod main;

#[doc(inline)]
pub use crate::main::*;

pub mod prelude {
    pub use {
        crate::{self as ez},
        alloc::{self},
        core::{self},
        std::{
            self,
            collections::{
                BTreeMap as SortedMap, BTreeSet as SortedSet, HashMap, HashSet, VecDeque as Deque,
            },
            fmt::{Debug, Display},
            path::{Path, PathBuf},
            rc::Rc,
            sync::Arc,
            time::{Duration, Instant},
        },
        ::{
            boolinator::{self, Boolinator},
            bytes::{self, Bytes, BytesMut},
            clap::{self},
            crossbeam::{self},
            derive_more::{self, *},
            dpc_pariter::{self, IteratorExt},
            eyre::{self, eyre},
            indexmap::{self, IndexMap as OrderedMap, IndexSet as OrderedSet},
            itertools::{self, Itertools},
            num_traits::{self, *},
            parking_lot::{self, Mutex, Once, RwLock},
            rayon::{self, prelude::*},
            serde::{self, Deserialize, Serialize},
            socket2::{self},
            thiserror::{self, Error},
            tokio::{self},
            tracing::{self, debug, error, info, trace, warn, instrument},
        },
    };
}