muesli 0.1.0

healthy implementation of PHP's serialization and session formats in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use muesli::{session_decode, unserialize};
use proptest::prelude::*;

proptest! {
    #![proptest_config(ProptestConfig::with_cases(10_000))]

    #[test]
    fn unserialize_should_not_panic(data: Vec<u8>) {
        let _ = unserialize(&data);
    }

    #[test]
    fn session_decode_should_not_panic(data: Vec<u8>) {
        let _ = session_decode(&data);
    }
}