codas 0.5.0

Compact and streamable data format that works anywhere--from web apps to robots.
Documentation
//! Coda code generators.
//!
//! # Unstable
//!
//! The APIs exposed by this module are _primarily_
//! for use by automated tooling (macros, CLIs, etc.);
//! the exact APIs are subject to change, and may
//! not be well-optimized.

#[cfg(any(feature = "langs-open-api", test))]
pub mod open_api;

#[cfg(any(feature = "langs-python", test))]
pub mod python;

#[cfg(any(feature = "langs-rust", test))]
pub mod rust;

#[cfg(any(feature = "langs-typescript", test))]
pub mod typescript;