41 lines
1.2 KiB
TOML
41 lines
1.2 KiB
TOML
[package]
|
|
name = "boring"
|
|
version = { workspace = true }
|
|
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
|
|
license = "Apache-2.0"
|
|
description = "BoringSSL bindings"
|
|
repository = { workspace = true }
|
|
documentation = "https://docs.rs/boring"
|
|
readme = "README.md"
|
|
keywords = ["crypto", "tls", "ssl", "dtls"]
|
|
categories = ["cryptography", "api-bindings"]
|
|
edition = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["rpk", "pq-experimental"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[features]
|
|
# Use a FIPS-validated version of boringssl.
|
|
fips = ["boring-sys/fips"]
|
|
|
|
# Link with precompiled FIPS-validated `bcm.o` module.
|
|
fips-link-precompiled = ["fips"]
|
|
|
|
# Enables Raw public key API (https://datatracker.ietf.org/doc/html/rfc7250)
|
|
rpk = ["boring-sys/rpk"]
|
|
|
|
# Enables experimental post-quantum crypto (https://blog.cloudflare.com/post-quantum-for-all/)
|
|
pq-experimental = ["boring-sys/pq-experimental"]
|
|
|
|
[dependencies]
|
|
bitflags = { workspace = true }
|
|
foreign-types = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
libc = { workspace = true }
|
|
boring-sys = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
hex = { workspace = true }
|
|
rusty-hook = { workspace = true }
|