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
|
//! Internal prelude
//!
//! This file contains most of the imports we wish to use, throughout this crate.
//!
//! Every module does `use crate::internal_prelude::*;`
//!
//! Exceptions:
//!
//! * Names that are private to a module and its submodules
//! are imported to the sub-modules via `use super::*`.
//! (Thus, the sub-module inherits the prelude from its parent.)
//!
//! * Broad names from specific contexts, that are unsuitable for wide imports.
//! For example, individual cell and message names from `tor-cell`,
//! and the types from `tor_proto::stream` other than the high-level `DataStream`.
pub(crate) use std::{
cmp::{Ordering, Reverse},
collections::{BinaryHeap, HashSet},
fmt::{self, Debug, Display},
future::Future,
marker::PhantomData,
mem,
ops::{Deref, DerefMut},
panic::{catch_unwind, AssertUnwindSafe},
pin::Pin,
sync::{Arc, Mutex, MutexGuard, PoisonError, Weak},
};
pub(crate) use futures::{
channel::mpsc,
stream::FusedStream,
task::{Spawn, SpawnError, SpawnExt as _},
FutureExt as _, Stream, StreamExt as _,
};
pub(crate) use {
derive_builder::Builder,
derive_deftly::{define_derive_deftly, Deftly},
derive_more::{Deref, DerefMut, From, Into},
educe::Educe,
pin_project::pin_project,
serde::{Deserialize, Serialize},
slotmap::SlotMap,
static_assertions::assert_not_impl_any,
thiserror::Error,
tracing::{error, info},
void::{ResultVoidExt as _, Void},
};
pub(crate) use {
tor_config::ConfigBuildError,
tor_error::{error_report, internal, into_internal, Bug, ErrorKind, HasKind},
tor_log_ratelim::log_ratelim,
tor_rtcompat::CoarseInstant,
};
pub(crate) use crate::{
config::Config,
drop_bomb::{DropBomb, DropBombCondition},
drop_reentrancy,
error::{Error, ReclaimCrashed, StartupError, TrackerCorrupted},
mtracker::Participation,
refcount,
utils::{DefaultExtTake, NoopWaker, Qty},
};
|