summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-12-19 09:09:25 +0000
committerLars Wirzenius <liw@liw.fi>2021-12-19 09:09:25 +0000
commit9f170606eb4fc24086274b446bb77cc1195280f0 (patch)
tree241a868b1018433f6bf17f8f85fead56e96b1b54 /src/lib.rs
parente5a830248d8a5d68a701377e0935fc9a8e3785a1 (diff)
parentbdf6e5306aab0a7183d36d6a45d91e307fb9a4b7 (diff)
downloadobnam-benchmark-9f170606eb4fc24086274b446bb77cc1195280f0.tar.gz
Merge branch 'obnam-server' into 'main'
feat: add abstraction for daemons and managing them See merge request obnam/obnam-benchmark!2
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index db53aac..82e735b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -28,8 +28,11 @@
//! This crate only collects data from a set of benchmarks. It does
//! not analyze the data. The data can be stored for later analysis.
+pub mod daemon;
pub mod obnam;
pub mod result;
+pub mod server;
pub mod specification;
pub mod step;
pub mod suite;
+pub mod tlsgen;