mcrypt 0.1.4

A cryptography library for Mangrove, a pure-rust, blazing fast package manager
Documentation
1
2
3
4
5
6
7
8
9
//! Global mcrypt test cases (these are mostly for codecov)

use crate::{detailed_version, version};

#[test]
pub fn versioning() {
    println!("{}", version());
    println!("{}", detailed_version());
}