Skip to content

Commit 5d33987

Browse files
authored
feat: Removal of rpk support (#41)
1 parent 18b295a commit 5d33987

File tree

4 files changed

+5
-806
lines changed

4 files changed

+5
-806
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ BoringSSL bindings are available for the Rust programming language, and the HTTP
66

77
## Non-goals
88

9-
This package is focused solely on implementing the TLS extensions spec. It supports the original [boring](https://github.com/cloudflare/boring) , including:
9+
This package only implements the TLS extensions spec and supports the original [boring](https://github.com/cloudflare/boring) with the following features:
1010

11-
* Safari required TLS extensions
12-
* Firefox required TLS extensions
13-
* `kDHE` & `ffdhe2048`/`ffdhe3072` implementations
11+
* Safari and Firefox required TLS extensions
12+
* `kDHE` and `ffdhe2048`/`ffdhe3072` implementations
13+
* Removal of `RPK` support
1414

1515
## Contribution
1616

boring-sys/build/main.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -487,12 +487,7 @@ fn ensure_patches_applied(config: &Config) -> io::Result<()> {
487487
config,
488488
"boringssl-44b3df6f03d85c901767250329c571db405122d5.patch",
489489
)?;
490-
491-
if config.features.rpk {
492-
println!("cargo:warning=applying RPK patch to boringssl");
493-
apply_patch(config, "rpk.patch")?;
494-
}
495-
490+
496491
if config.features.underscore_wildcards {
497492
println!("cargo:warning=applying underscore wildcards patch to boringssl");
498493
apply_patch(config, "underscore-wildcards.patch")?;

0 commit comments

Comments
 (0)