deps: rustls-platform-verifier-0.6, and refactor

This commit is contained in:
Jun Kurihara 2025-06-03 13:20:02 +09:00
commit 629c6e73e9
No known key found for this signature in database
GPG key ID: B184DE07B34AA676
4 changed files with 61 additions and 18 deletions

View file

@ -12,4 +12,7 @@ pub enum RpxyAcmeError {
/// IO error
#[error("IO error: {0}")]
Io(#[from] std::io::Error),
/// TLS client configuration error
#[error("TLS client configuration error: {0}")]
TlsClientConfig(String),
}