-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: Add vendored support Signed-off-by: Xuanwo <[email protected]> * Use diff=false instead Signed-off-by: Xuanwo <[email protected]> * try fix Signed-off-by: Xuanwo <[email protected]> * Fix typo Signed-off-by: Xuanwo <[email protected]> * Use vendor by default Signed-off-by: Xuanwo <[email protected]> * Add check Signed-off-by: Xuanwo <[email protected]> --------- Signed-off-by: Xuanwo <[email protected]>
- Loading branch information
Showing
34 changed files
with
12,722 additions
and
17 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
src/generated/ diff=false |
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 |
---|---|---|
|
@@ -21,6 +21,9 @@ jobs: | |
uses: Swatinem/[email protected] | ||
- name: make check | ||
run: make check | ||
- name: Catch unexpected changes in the generated code | ||
run: | | ||
git diff --exit-code | ||
unit-test: | ||
name: unit test | ||
|
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,17 @@ | ||
[package] | ||
name = "tikv-client-proto-build" | ||
version = "0.0.0" | ||
publish = false | ||
|
||
keywords = ["TiKV", "KV", "distributed-systems"] | ||
license = "Apache-2.0" | ||
authors = ["The TiKV Project Authors"] | ||
repository = "https://github.com/tikv/client-rust" | ||
description = "The Rust language implementation of TiKV client." | ||
edition = "2021" | ||
|
||
[dependencies] | ||
glob = "0.3" | ||
tonic-build = "0.9" | ||
# Suppress doctest bug (https://stackoverflow.com/questions/66074003/how-to-turn-off-cargo-doc-test-and-compile-for-a-specific-module-in-rust) | ||
tonic-disable-doctest = "0.1.0" |
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
Oops, something went wrong.