missing type from public interface (#844)

This commit is contained in:
Adam Leventhal 2024-06-25 16:25:10 -07:00 committed by GitHub
parent 0c70506494
commit 4d364419ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
// Copyright 2022 Oxide Computer Company // Copyright 2024 Oxide Computer Company
//! Progenitor is a Rust crate for generating opinionated clients from API //! Progenitor is a Rust crate for generating opinionated clients from API
//! descriptions specified in the OpenAPI 3.0.x format. It makes use of Rust //! descriptions specified in the OpenAPI 3.0.x format. It makes use of Rust
@ -13,6 +13,7 @@
#![deny(missing_docs)] #![deny(missing_docs)]
pub use progenitor_client; pub use progenitor_client;
pub use progenitor_impl::CrateVers;
pub use progenitor_impl::Error; pub use progenitor_impl::Error;
pub use progenitor_impl::GenerationSettings; pub use progenitor_impl::GenerationSettings;
pub use progenitor_impl::Generator; pub use progenitor_impl::Generator;