Skip to content

Commit

Permalink
Re-export prost and prost-reflect at crate root
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewhickman committed Nov 2, 2023
1 parent ca16dc7 commit 266c1ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- The [`prost`](https://crates.io/crates/prost) and [`prost-reflect`](https://crates.io/crates/prost-reflect) dependencies are now re-exported at the crate root, for easier use in build scripts.

## [0.5.0] - 2023-09-01

### Changed
Expand Down
2 changes: 2 additions & 0 deletions protox/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ mod error;

use std::path::Path;

pub use {prost, prost_reflect};

pub use self::compile::Compiler;
pub use self::error::Error;

Expand Down

0 comments on commit 266c1ec

Please sign in to comment.