codas 0.7.1

Markdown-defined data that serialize to and from bytes on any platform—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-sql", test))]
pub mod sql;
#[cfg(any(feature = "langs-typescript", test))]
pub mod typescript;