otter_support/
lib.rs

1// Copyright 2020-2021 Ian Jackson and contributors to Otter
2// SPDX-License-Identifier: AGPL-3.0-or-later
3// There is NO WARRANTY.
4
5pub mod crates;
6pub mod imports;
7pub mod prelude;
8
9pub mod authproofs;
10pub mod childio;
11pub mod config;
12pub mod debugmutex;
13pub mod digestrw;
14pub mod keydata;
15pub mod packetframe;
16pub mod progress;
17pub mod support;
18pub mod termprogress;
19pub mod timedfd;
20pub mod tz;
21
22#[path = "fake-rng.rs"]           pub mod fake_rng;
23#[path = "fake-time.rs"]          pub mod fake_time;
24#[path = "slotmap-slot-idx.rs"]   pub mod slotmap_slot_idx;
25#[path = "toml-de.rs"]            pub mod toml_de;