apivolve_generator_api 0.1.1

Api for creating generators for Apivolve, an API evolution tool that helps keep your APIs backwards compatible yet clean.
Documentation
1
2
3
4
5
6
7
8
9
10
#![allow(clippy::module_inception)] //TODO @mark: TEMPORARY! REMOVE THIS!

extern crate core;

pub use self::util::Identifier;
pub use self::util::Range;

mod driver;
pub mod gen1;
mod util;