diff options
author | Kevin Guthrie <[email protected]> | 2024-10-15 13:56:22 -0400 |
---|---|---|
committer | Kevin Guthrie <[email protected]> | 2024-10-28 11:51:38 -0400 |
commit | d445e749f3f4116bd0a1af7ac6050f57838f359a (patch) | |
tree | fbf7dc0bf1a243e320aa668b6da9f1640e58ddd2 /pingora-core/Cargo.toml | |
parent | 354a6ee1e99b82e23fc0f27a37d8bf41e62b2dc5 (diff) | |
download | pingora-d445e749f3f4116bd0a1af7ac6050f57838f359a.tar.gz pingora-d445e749f3f4116bd0a1af7ac6050f57838f359a.zip |
Plumb errors through rustls implementation
Diffstat (limited to 'pingora-core/Cargo.toml')
-rw-r--r-- | pingora-core/Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pingora-core/Cargo.toml b/pingora-core/Cargo.toml index cb9f741..d75e059 100644 --- a/pingora-core/Cargo.toml +++ b/pingora-core/Cargo.toml @@ -68,6 +68,7 @@ tokio-test = "0.4" zstd = "0" httpdate = "1" x509-parser = { version = "0.16.0", optional = true } +ouroboros = { version = "0.18.4", optional = true } [target.'cfg(unix)'.dependencies] daemonize = "0.5.0" @@ -92,7 +93,7 @@ jemallocator = "0.5" default = [] openssl = ["pingora-openssl", "openssl_derived",] boringssl = ["pingora-boringssl", "openssl_derived",] -rustls = ["pingora-rustls", "any_tls", "dep:x509-parser"] +rustls = ["pingora-rustls", "any_tls", "dep:x509-parser", "ouroboros"] patched_http1 = ["pingora-http/patched_http1"] openssl_derived = ["any_tls"] any_tls = [] |