Made ring optional

This commit is contained in:
Hannes 2021-05-13 16:41:09 +02:00
commit f6ab3e10af
6 changed files with 28 additions and 7 deletions

View file

@ -1,6 +1,5 @@
#![no_std]
#![allow(stable_features)]
#![feature(alloc)]
extern crate alloc;
@ -8,5 +7,9 @@ mod aead;
mod dh;
mod kdf_root;
mod kdf_chain;
mod header;
/// Providing essential functions
pub mod ratchet;
/// Message Header
pub mod header;