Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
dependencies = [
"fehler",
"humantime",
- "ndarray",
"num-traits",
"otter",
"serde",
version = "0.0.1"
dependencies = [
"fehler",
- "humantime",
"ndarray",
"num-traits",
- "otter",
+ "otter-api-tests",
"serde",
"structopt",
"strum",
// SPDX-License-Identifier: AGPL-3.0-or-later
// There is NO WARRANTY.
+pub mod imports {
+ pub use otter;
+ pub use otter::imports::*;
+
+ pub use humantime;
+}
otter = { path = ".." }
humantime = "2"
-ndarray = "0.14"
# Repeated here because importing does not work properly
fehler = "1"
// SPDX-License-Identifier: AGPL-3.0-or-later
// There is NO WARRANTY.
-pub use otter::imports::*;
+pub use otter_api_tests::imports::*;
pub use anyhow::{anyhow, ensure, Context};
pub use boolinator::Boolinator;
}
mod cleanup_notify {
- use otter::imports::*;
+ use otter_api_tests::imports::*;
use anyhow::Context;
use fehler::{throw, throws};
use libc::_exit;
edition = "2018"
[dependencies]
-otter = { path = ".." }
+otter-api-tests = { path = "../apitest" }
-humantime = "2"
ndarray = "0.14"
thirtyfour_sync = "0.22"
x11rb = "0.8"