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
77
78
79
|
//! 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`.
#![allow(unused_imports)]
pub(crate) use std::{
cmp::{Ordering, Reverse},
collections::{BinaryHeap, HashSet},
fmt::{self, Debug},
future::Future,
marker::PhantomData,
mem::{self, size_of},
panic::{AssertUnwindSafe, catch_unwind},
pin::Pin,
sync::{Arc, Mutex, MutexGuard, PoisonError, Weak},
};
pub(crate) use futures::{
FutureExt as _, Sink, SinkExt as _, Stream, StreamExt as _,
channel::mpsc,
stream::FusedStream,
task::{Spawn, SpawnError},
};
pub(crate) use std::task::Waker;
pub(crate) use {
derive_deftly::{Deftly, define_derive_deftly, derive_deftly_adhoc},
derive_more::{Constructor, Deref, DerefMut},
dyn_clone::DynClone,
educe::Educe,
extend::ext,
itertools::chain,
paste::paste,
pin_project::pin_project,
serde::{Deserialize, Serialize},
slotmap_careful::SlotMap,
static_assertions::assert_not_impl_any,
thiserror::Error,
tracing::{debug, error, info},
void::{ResultVoidExt as _, Void},
};
pub(crate) use {
tor_async_utils::mpsc_channel_no_memquota,
tor_async_utils::stream_peek::StreamUnobtrusivePeeker,
tor_basic_utils::ByteQty as Qty,
tor_config::{ConfigBuildError, ExplicitOrAuto, ReconfigureError},
tor_error::{Bug, ErrorKind, HasKind, error_report, internal, into_internal, trace_report},
tor_log_ratelim::log_ratelim,
tor_rtcompat::{CoarseInstant, CoarseTimeProvider, DynTimeProvider, SpawnExt as _},
};
pub(crate) use crate::{
EnabledToken,
config::{Config, ConfigInner},
drop_bomb::{DropBomb, DropBombCondition},
drop_reentrancy,
error::{Error, ReclaimCrashed, StartupError, TrackerCorrupted},
if_enabled::IfEnabled,
memory_cost::{HasMemoryCost, HasTypedMemoryCost, TypedParticipation},
mtracker::{self, Account, IsParticipant, MemoryQuotaTracker, Participation},
private::Sealed,
refcount,
utils::DefaultExtTake,
};
|