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
/*!

# Implementation of the lozizol protocol

See README.md for detailed description of the protocol.

The crate is mostly intended to be used as a library. Most notably the Vuint type.
It also provides a CLI lozizol to play with the implemented features.

# lozizol CLI

```bash
cargo install lozizol
lozizol help
lozizol help serialize
lozizol help serialize vuint
```

*/

#[macro_use]
extern crate log;

#[cfg(feature = "cli")]
pub mod cli;
pub mod model;
#[cfg(feature = "tasks")]
pub mod task;