-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate types to deserialize simple extensions (#27)
* Generate types to deserialize simple extensions * Add test that checks deserialization of the core extensions * Refactor build script and document serde features * Fix Clippy warnings * Remove Cargo.lock * Allow `clippy::uninlined-format-args` in generated text code * Add `protoc` feature to build `protoc` from source * Skip `protoc` install on `protoc` feature check * Split filter in text deserialize test * Add missing quotes * Fix expression
- Loading branch information
Showing
11 changed files
with
489 additions
and
583 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,16 @@ | ||
status = ["Check", "Test", "Rustfmt", "Clippy", "Rustdoc"] | ||
status = [ | ||
"Check (default)", | ||
"Check (pbjson)", | ||
"Check (protoc)", | ||
"Check (serde)", | ||
"Test (default)", | ||
"Test (pbjson)", | ||
"Test (serde)", | ||
"Rustfmt", | ||
"Clippy (default)", | ||
"Clippy (pbjson)", | ||
"Clippy (serde)", | ||
"Rustdoc", | ||
] | ||
delete_merged_branches = true | ||
timeout_sec = 600 |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
target | ||
/target | ||
Cargo.lock | ||
|
||
.idea |
Oops, something went wrong.