Skip to content

Commit 8da6126

Browse files
authored
Update grpc c core to 1.44.0 (tikv#558)
This PR also uses the same bindings for both (x86_64|aarch64)_(macos|linux). CI will check if it's OK to do so. This should make maintenance easier. Changes from tikv#539 is also included in this PR. Features use-bindgen is removed as it can be detected during compile time now. This PR also rename the secure features to boringssl for better understanding. And now only enabling openssl features will not download boringssl anymore. Close tikv#557. Close tikv#539. Signed-off-by: Jay Lee <[email protected]>
1 parent 5a7f3ac commit 8da6126

File tree

17 files changed

+665
-4540
lines changed

17 files changed

+665
-4540
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,11 @@ jobs:
9797
- uses: actions/checkout@v2
9898
- run: which cargo && cargo version && clang --version && openssl version
9999
- run: cargo xtask submodule
100-
- run: cargo build --no-default-features --features use-bindgen
101-
- run: cargo build --no-default-features --features "protobuf-codec use-bindgen"
102-
- run: cargo build --no-default-features --features "prost-codec use-bindgen"
100+
- run: env TEST_BIND=0 cargo xtask bindgen && git diff --exit-code HEAD
101+
- run: cargo xtask bindgen
102+
- run: cargo build --no-default-features
103+
- run: cargo build --no-default-features --features "protobuf-codec"
104+
- run: cargo build --no-default-features --features "prost-codec"
103105
- run: cargo build
104106
- run: cargo test --all
105107

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ members = [
4141
exclude = ["xtask"]
4242

4343
[features]
44-
default = ["protobuf-codec", "secure", "use-bindgen"]
44+
default = ["protobuf-codec", "boringssl"]
45+
_secure = []
4546
protobuf-codec = ["protobuf"]
4647
prost-codec = ["prost", "bytes"]
47-
secure = ["grpcio-sys/secure"]
48-
openssl = ["secure", "grpcio-sys/openssl"]
49-
openssl-vendored = ["secure", "grpcio-sys/openssl-vendored"]
48+
boringssl = ["grpcio-sys/boringssl", "_secure"]
49+
openssl = ["_secure", "grpcio-sys/openssl"]
50+
openssl-vendored = ["_secure", "grpcio-sys/openssl-vendored"]
5051
no-omit-frame-pointer = ["grpcio-sys/no-omit-frame-pointer"]
51-
use-bindgen = ["grpcio-sys/use-bindgen"]
5252

5353
[badges]
5454
travis-ci = { repository = "tikv/grpc-rs" }

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ This project is still under development. The following features with the check m
2929
- Rust >= 1.36.0
3030
- binutils >= 2.22
3131
- LLVM and Clang >= 3.9 if you need to generate bindings at compile time.
32-
- By default, the [secure feature](#feature-secure) is provided by boringssl. You can also use openssl instead by enabling [openssl feature](#feature-openssl).
3332

3433
For Linux and MacOS, you also need to install gcc 4.9+ (or clang) too.
3534

@@ -93,9 +92,9 @@ To include this project as a dependency:
9392
grpcio = "0.6"
9493
```
9594

96-
### Feature `secure`
95+
### Feature `boringssl`
9796

98-
`secure` feature enables support for TLS encryption and some authentication
97+
`boringssl` feature enables support for TLS encryption and some authentication
9998
mechanism. When you do not need it, for example when working in intranet,
10099
you can disable it by using the following configuration:
101100
```

grpc-sys/Cargo.toml

+12-9
Original file line numberDiff line numberDiff line change
@@ -53,21 +53,24 @@ openssl-sys = { version = "0.9", optional = true, features = ["vendored"] }
5353
libz-sys = { version = "1.1.3", default-features = false, features = ["libc", "static"] }
5454

5555
[features]
56-
default = ["use-bindgen"]
57-
secure = ["boringssl-src"]
58-
openssl = ["secure"]
56+
# A hidden feature indicating that secure features should be enabled.
57+
_secure = []
58+
boringssl = ["boringssl-src", "_secure"]
59+
openssl = ["_secure"]
5960
openssl-vendored = ["openssl", "openssl-sys"]
6061
no-omit-frame-pointer = []
61-
# If this feature is disabled, bindgen will not be used and the previously generated bindings will
62-
# be compiled instead. This only work for the supported targets and will make compilation fails for
63-
# the other ones.
64-
use-bindgen = ["bindgen"]
62+
# A hidden feature that is used to force regenerating bindings.
63+
_gen-bindings = ["bindgen"]
64+
_list-package = []
65+
66+
[target.'cfg(not(all(any(target_os = "linux", target_os = "macos"), any(target_arch = "x86_64", target_arch = "aarch64"))))'.build-dependencies]
67+
bindgen = "0.59.0"
6568

6669
[build-dependencies]
6770
cc = "1.0"
6871
cmake = "0.1"
6972
pkg-config = "0.3"
7073
walkdir = "2.2.9"
7174
# Because of rust-lang/cargo#5237, bindgen should not be upgraded util a minor or major release.
72-
bindgen = { version = "0.57.0", default-features = false, optional = true, features = ["runtime"] }
73-
boringssl-src = { version = "0.4.0", optional = true }
75+
bindgen = { version = "0.59.0", default-features = false, optional = true, features = ["runtime"] }
76+
boringssl-src = { version = "0.5.0", optional = true }

grpc-sys/bindings/aarch64-unknown-linux-gnu-bindings.rs grpc-sys/bindings/bindings.rs

+409-290
Large diffs are not rendered by default.

grpc-sys/bindings/x86_64-unknown-linux-gnu-bindings.rs

-4,106
This file was deleted.

0 commit comments

Comments
 (0)