watermelon-proto 0.1.8

#[no_std] NATS Core Sans-IO protocol implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub use self::client::ClientOp;
pub use self::decoder::{StreamDecoder, decode_frame};
pub use self::encoder::{FramedEncoder, StreamEncoder};
pub use self::server::ServerOp;

mod client;
mod decoder;
mod encoder;
mod server;

pub mod error {
    pub use super::decoder::{DecoderError, FrameDecoderError};
}