Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
dependencies = [
"anyhow",
"argparse",
- "arrayvec",
"backtrace",
"boolinator",
"chrono",
anyhow = "1"
argparse = "0.2"
-arrayvec = "0.5"
backtrace = "0.3"
boolinator = "2"
chrono = "0.4"
--- /dev/null
+// Copyright 2020-2021 Ian Jackson and contributors to Otter
+// SPDX-License-Identifier: AGPL-3.0-or-later
+// There is NO WARRANTY.
+
+pub use arrayvec;
// SPDX-License-Identifier: AGPL-3.0-or-later
// There is NO WARRANTY.
+pub mod imports;
+
pub mod zcoord;
pub mod misc;
// SPDX-License-Identifier: AGPL-3.0-or-later
// There is NO WARRANTY.
+pub use otter_base::imports::*;
+
pub use anyhow;
// SPDX-License-Identifier: AGPL-3.0-or-later
// There is NO WARRANTY.
+use crate::imports::*;
+
pub use std::any::Any;
pub use std::borrow::Borrow;
pub use std::borrow::Cow;
// SPDX-License-Identifier: AGPL-3.0-or-later
// There is NO WARRANTY.
+use crate::imports::*;
+
use std::fmt::{self, Debug};
use std::fs;
use std::io;