1 2 3 4 5 6 7 8 9 10 11
// SPDX-License-Identifier: Apache-2.0 //! Parsing of [proto](crate::proto) types. mod version; pub use version::{Version, VersionError}; mod plan_version; pub use plan_version::{PlanVersion, PlanVersionError}; pub mod extensions;