Release 3.0.2
This commit is contained in:
parent
7fd29555b6
commit
308f0405bd
|
|
@ -8,7 +8,7 @@ members = [
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "3.0.1"
|
version = "3.0.2"
|
||||||
repository = "https://github.com/cloudflare/boring"
|
repository = "https://github.com/cloudflare/boring"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,8 @@
|
||||||
|
3.0.2
|
||||||
|
- 2023-08-03 Fix feature gates for fips-link-precompiled
|
||||||
|
- 2023-07-28 Switch boring from lazy_static to once_cell
|
||||||
|
- 2023-08-01 Clean up and remove some unsafe code from ffi callbacks
|
||||||
|
|
||||||
3.0.1
|
3.0.1
|
||||||
- 2023-08-01 Reduce release bundle size by excluding PQ test data
|
- 2023-08-01 Reduce release bundle size by excluding PQ test data
|
||||||
- 2023-07-28 Adding hmac.h to included headers
|
- 2023-07-28 Adding hmac.h to included headers
|
||||||
|
|
|
||||||
|
|
@ -627,11 +627,7 @@ fn main() {
|
||||||
let include_path = env::var("BORING_BSSL_INCLUDE_PATH").unwrap_or_else(|_| {
|
let include_path = env::var("BORING_BSSL_INCLUDE_PATH").unwrap_or_else(|_| {
|
||||||
let src_path = get_boringssl_source_path();
|
let src_path = get_boringssl_source_path();
|
||||||
|
|
||||||
if Path::new(&src_path)
|
if Path::new(&src_path).join("include").exists() {
|
||||||
.join("include")
|
|
||||||
.join("x509v3.h")
|
|
||||||
.exists()
|
|
||||||
{
|
|
||||||
format!("{}/include", &src_path)
|
format!("{}/include", &src_path)
|
||||||
} else {
|
} else {
|
||||||
format!("{}/src/include", &src_path)
|
format!("{}/src/include", &src_path)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue