transit 0.3.0

Send and receive types over UDP packets. A feature-based serialization story, this crate must be compiled with a serialization feature to inform the crate what type of serialization is wanted.
1
2
3
4
5
6
7
8
9
#!/bin/bash

echo "Testing JSON serialization"
cargo test --verbose --features "json_serialization"
cargo bench --verbose --features "json_serialization"

echo "Testing MsgPack serialization"
cargo test --verbose --features "msgpack_serialization"
cargo bench --verbose --features "msgpack_serialization"