bencodex-rs 0.5.1

The Rust implementation of Bencodex
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod codec;

pub use codec::decode::{Decode, DecodeError};
pub use codec::encode::Encode;
pub use codec::types::{
    BencodexDictionary, BencodexKey, BencodexList, BencodexValue, BENCODEX_NULL,
};

#[cfg(feature = "json")]
pub mod json;