codas 0.7.1

Markdown-defined data that serialize to and from bytes on any platform—from web apps to robots!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(all(not(feature = "std"), not(test)), no_std)]
#![doc = include_str!("../README.md")]
//! > _Note_: This documentation is auto-generated
//! > from the project's README.md file.
extern crate alloc;

pub mod codec;
#[cfg(any(feature = "langs", test))]
pub mod langs;
#[cfg(any(feature = "parse", test))]
pub mod parse;
pub mod stream;
pub mod types;