nine 0.5.0

The 9p protocol as a serde format and message types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 9p message types and (de)serializers for the format.

extern crate serde;
extern crate byteorder;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate bitflags;
#[macro_use]
extern crate failure;

#[macro_use]
pub mod common;
pub mod de;
pub mod p2000;
pub mod ser;