zlicenser 0.1.4

Client library for the zlicenser hardware-bound software licensing framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(clippy::all, clippy::pedantic)]
#![deny(unsafe_op_in_unsafe_fn)]
// Pre-existing documentation debt; fix incrementally as code is touched .
#![allow(clippy::missing_errors_doc, clippy::must_use_candidate)]

pub mod client;
pub mod desktop;
pub mod error;
pub mod marketplace;
pub mod shim;

pub fn hello_world() -> &'static str {
    "hello from zlicenser"
}