43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "hyper-boring"
|
|
version = "2.1.2"
|
|
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
|
|
edition = "2021"
|
|
description = "Hyper TLS support via BoringSSL"
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/cloudflare/boring"
|
|
documentation = "https://docs.rs/hyper-boring"
|
|
readme = "README.md"
|
|
exclude = ["test/*"]
|
|
|
|
[features]
|
|
default = ["runtime"]
|
|
|
|
runtime = ["hyper/runtime"]
|
|
|
|
# Use a FIPS-validated version of boringssl.
|
|
fips = ["tokio-boring/fips"]
|
|
|
|
# Enables Raw public key API (https://datatracker.ietf.org/doc/html/rfc7250)
|
|
rpk = ["tokio-boring/rpk"]
|
|
|
|
# Enables post-quantum crypto (https://blog.cloudflare.com/post-quantum-for-all/)
|
|
post-quantum = ["tokio-boring/post-quantum"]
|
|
|
|
|
|
[dependencies]
|
|
antidote = "1.0.0"
|
|
http = "0.2"
|
|
hyper = { version = "0.14", default-features = false, features = ["client"] }
|
|
linked_hash_set = "0.1"
|
|
once_cell = "1.0"
|
|
boring = { version = ">=1.1.0,<3.0.0", path = "../boring" }
|
|
tokio = "1"
|
|
tokio-boring = { version = "2", path = "../tokio-boring" }
|
|
tower-layer = "0.3"
|
|
|
|
[dev-dependencies]
|
|
hyper = { version = "0.14", features = ["full"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
futures = "0.3"
|