File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64,6 +64,15 @@ rpk = []
6464# `BORING_BSSL{,_FIPS}_SOURCE_PATH`.
6565underscore-wildcards = []
6666
67+ # UNSUPPORTED. Do not use. Fails the build.
68+ fips-link-precompiled = []
69+
70+ # UNSUPPORTED. Do not use. Fails the build.
71+ fips-precompiled = []
72+
73+ # UNSUPPORTED. Do not use. Fails the build.
74+ pq-experimental = []
75+
6776[build-dependencies ]
6877bindgen = { workspace = true }
6978cmake = { workspace = true }
Original file line number Diff line number Diff line change @@ -723,3 +723,12 @@ fn ensure_err_lib_enum_is_named(source_code: &mut Vec<u8>) {
723723 . as_bytes ( ) ,
724724 ) ;
725725}
726+
727+ #[ cfg( feature = "pq-experimental" ) ]
728+ compile_error ! ( "boring-sys v5 has removed the `pq-experimental` Cargo feature. Unset it." ) ;
729+
730+ #[ cfg( feature = "fips-precompiled" ) ]
731+ compile_error ! ( "boring-sys v5 has removed the `fips-precompiled` Cargo feature. Unset it, and use the `fips` feature instead." ) ;
732+
733+ #[ cfg( feature = "fips-link-precompiled" ) ]
734+ compile_error ! ( "boring-sys v5 has removed the `fips-link-precompiled` Cargo feature. Unset it, and use the `fips` feature instead." ) ;
You can’t perform that action at this time.
0 commit comments