paas-api 0.9.0

Common API for PAAS server and client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/// The current version of the API
pub const CURRENT_PROTOCOL_VERSION: &str = env!("CARGO_PKG_VERSION");
/// The minimal supported compatible version
pub const MIN_SUPPORTED_VERSION: &str = "0.9.0";

/// Transcryptor config
pub mod config;
/// API paths
pub mod paths;
/// Managing PEP sessions
pub mod sessions;
/// Server status checks
pub mod status;
/// Pseudonym transcryption
pub mod transcrypt;