45 lines
1.2 KiB
TOML
45 lines
1.2 KiB
TOML
[package]
|
|
name = "boring-sys"
|
|
version = "2.1.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>",
|
|
"Steven Fackler <sfackler@gmail.com>",
|
|
"Ivan Nikulin <ifaaan@gmail.com>"]
|
|
license = "MIT"
|
|
description = "FFI bindings to BoringSSL"
|
|
repository = "https://github.com/cloudflare/boring"
|
|
documentation = "https://docs.rs/boring-sys"
|
|
links = "boringssl"
|
|
readme = "README.md"
|
|
categories = ["cryptography", "external-ffi-bindings"]
|
|
edition = "2021"
|
|
include = [
|
|
"/*.md",
|
|
"/*.toml",
|
|
"/LICENSE-MIT",
|
|
"/deps/boringssl/**/*.[chS]",
|
|
"/deps/boringssl/**/*.asm",
|
|
"/deps/boringssl/src/**/*.cc",
|
|
"/deps/boringssl/**/CMakeLists.txt",
|
|
"/deps/boringssl/**/sources.cmake",
|
|
"/deps/boringssl/LICENSE",
|
|
"/build.rs",
|
|
"/src",
|
|
"/patches",
|
|
"/scripts"
|
|
]
|
|
|
|
[build-dependencies]
|
|
bindgen = { version = "0.65.1", default-features = false, features = ["runtime"] }
|
|
cmake = "0.1"
|
|
fslock = "0.2.1"
|
|
|
|
[features]
|
|
# Use a FIPS-validated version of boringssl.
|
|
fips = []
|
|
|
|
# Enables Raw public key API (https://datatracker.ietf.org/doc/html/rfc7250)
|
|
rpk = []
|
|
|
|
# Enables post-quantum crypto (https://blog.cloudflare.com/post-quantum-for-all/)
|
|
post-quantum = []
|