deps: h3-0.0.6
This commit is contained in:
parent
8c9b5425cc
commit
9f88bfcafa
7 changed files with 78 additions and 44 deletions
|
|
@ -36,9 +36,12 @@ pub enum RpxyError {
|
|||
HyperBodyError(#[from] hyper::Error),
|
||||
|
||||
// http/3 errors
|
||||
#[cfg(any(feature = "http3-quinn", feature = "http3-s2n"))]
|
||||
#[cfg(feature = "http3-quinn")]
|
||||
#[error("H3 error: {0}")]
|
||||
H3Error(#[from] h3::Error),
|
||||
#[cfg(feature = "http3-s2n")]
|
||||
#[error("H3 error: {0}")]
|
||||
H3Error(#[from] s2n_quic_h3::h3::Error),
|
||||
#[cfg(any(feature = "http3-quinn", feature = "http3-s2n"))]
|
||||
#[error("Exceeds max request body size for HTTP/3")]
|
||||
H3TooLargeBody,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue