rename conduit to conduwuit finally
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
c6bf8f5ea1
commit
0317cc8cc5
277 changed files with 559 additions and 551 deletions
|
@ -6,8 +6,8 @@ mod unix;
|
|||
use std::sync::Arc;
|
||||
|
||||
use axum_server::Handle as ServerHandle;
|
||||
use conduit::Result;
|
||||
use conduit_service::Services;
|
||||
use conduwuit::Result;
|
||||
use conduwuit_service::Services;
|
||||
use tokio::sync::broadcast;
|
||||
|
||||
use super::layers;
|
||||
|
@ -28,7 +28,7 @@ pub(super) async fn serve(
|
|||
return tls::serve(server, app, handle, addrs).await;
|
||||
|
||||
#[cfg(not(feature = "direct_tls"))]
|
||||
return conduit::Err!(Config(
|
||||
return conduwuit::Err!(Config(
|
||||
"tls",
|
||||
"conduwuit was not built with direct TLS support (\"direct_tls\")"
|
||||
));
|
||||
|
|
|
@ -5,7 +5,7 @@ use std::{
|
|||
|
||||
use axum::Router;
|
||||
use axum_server::{bind, Handle as ServerHandle};
|
||||
use conduit::{debug_info, info, Result, Server};
|
||||
use conduwuit::{debug_info, info, Result, Server};
|
||||
use tokio::task::JoinSet;
|
||||
|
||||
pub(super) async fn serve(
|
||||
|
|
|
@ -6,7 +6,7 @@ use axum_server_dual_protocol::{
|
|||
axum_server::{bind_rustls, tls_rustls::RustlsConfig},
|
||||
ServerExt,
|
||||
};
|
||||
use conduit::{err, Result, Server};
|
||||
use conduwuit::{err, Result, Server};
|
||||
use tokio::task::JoinSet;
|
||||
use tracing::{debug, info, warn};
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ use axum::{
|
|||
extract::{connect_info::IntoMakeServiceWithConnectInfo, Request},
|
||||
Router,
|
||||
};
|
||||
use conduit::{debug, debug_error, info, result::UnwrapInfallible, trace, warn, Err, Result, Server};
|
||||
use conduwuit::{debug, debug_error, info, result::UnwrapInfallible, trace, warn, Err, Result, Server};
|
||||
use hyper::{body::Incoming, service::service_fn};
|
||||
use hyper_util::{
|
||||
rt::{TokioExecutor, TokioIo},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue