** Logging To change the verbosity level of output messages, set the ~RUST_LOG~ env var:

** Building To build with default features, run:

+BEGIN_SRC shell

$ cargo build --release $ strip target/release/sever

+END_SRC

The binary will be built to ~target/release/sever~

* Building with non-default features To build with your desired features, run:

+BEGIN_SRC shell

$ cargo build --release --no-default-features --features feature1,feature2,feature3,... $ strip target/release/sever

+END_SRC

The binary will be built to ~target/release/sever~ * License GPL'd with <3