Merge pull request #222 from vladon/fix/unused-import-warning

fix: add #[cfg(test)] to unused ProxyError import
This commit is contained in:
Alexey 2026-02-24 04:37:00 +03:00 committed by GitHub
commit d9ae7bb044
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -7,6 +7,7 @@
#![allow(dead_code)]
use crate::crypto::{sha256_hmac, SecureRandom};
#[cfg(test)]
use crate::error::ProxyError;
use super::constants::*;
use std::time::{SystemTime, UNIX_EPOCH};