-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move prost gen to default out dir location * clippy fix * fmt * remove --no-verify * fix warning
- Loading branch information
Showing
26 changed files
with
43 additions
and
3,552 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Create separate modules for each proto component | ||
pub mod errors { | ||
include!(concat!(env!("OUT_DIR"), "/errors.rs")); | ||
} | ||
|
||
pub mod expression { | ||
include!(concat!(env!("OUT_DIR"), "/expression.rs")); | ||
} | ||
|
||
pub mod pretransform { | ||
include!(concat!(env!("OUT_DIR"), "/pretransform.rs")); | ||
} | ||
|
||
pub mod services { | ||
include!(concat!(env!("OUT_DIR"), "/services.rs")); | ||
} | ||
|
||
pub mod tasks { | ||
include!(concat!(env!("OUT_DIR"), "/tasks.rs")); | ||
} | ||
|
||
pub mod transforms { | ||
include!(concat!(env!("OUT_DIR"), "/transforms.rs")); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1 @@ | ||
#[cfg(not(feature = "tonic_support"))] | ||
pub mod prost_gen; | ||
#[cfg(not(feature = "tonic_support"))] | ||
pub use prost_gen as gen; | ||
|
||
#[cfg(feature = "tonic_support")] | ||
pub mod tonic_gen; | ||
#[cfg(feature = "tonic_support")] | ||
pub use tonic_gen as gen; | ||
pub mod gen; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.