From dbdc5b6ac645091b68ce40ea2f952a3a347cdff8 Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Wed, 18 Sep 2024 10:20:14 +0200 Subject: [PATCH] Rename some stuff --- hyper-boring/src/v1.rs | 2 +- hyper-boring/tests/{old.rs => v0.rs} | 0 hyper-boring/tests/{hyper1.rs => v1.rs} | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename hyper-boring/tests/{old.rs => v0.rs} (100%) rename hyper-boring/tests/{hyper1.rs => v1.rs} (100%) diff --git a/hyper-boring/src/v1.rs b/hyper-boring/src/v1.rs index 10d0d598..e1f9a43d 100644 --- a/hyper-boring/src/v1.rs +++ b/hyper-boring/src/v1.rs @@ -22,7 +22,7 @@ use tokio::io::{AsyncRead, AsyncWrite}; use tower_layer::Layer; use tower_service::Service; -/// A Connector using OpenSSL to support `http` and `https` schemes. +/// A Connector using BoringSSL to support `http` and `https` schemes. #[derive(Clone)] pub struct HttpsConnector { http: T, diff --git a/hyper-boring/tests/old.rs b/hyper-boring/tests/v0.rs similarity index 100% rename from hyper-boring/tests/old.rs rename to hyper-boring/tests/v0.rs diff --git a/hyper-boring/tests/hyper1.rs b/hyper-boring/tests/v1.rs similarity index 100% rename from hyper-boring/tests/hyper1.rs rename to hyper-boring/tests/v1.rs