diff --git a/Cargo.toml b/Cargo.toml index 78225af005957648cbb8519539787d0c57145446..0daa2679573c6559791b7f21b48a72b2b80e774c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -81,7 +81,6 @@ default-features = false version = "0.6.20" default-features = false features = ["form", "headers", "http1", "http2", "json", "matched-path"] -optional = true [dependencies.axum-server] version = "0.5.1" @@ -293,8 +292,7 @@ hyperlocal = { git = "https://github.com/softprops/hyperlocal", rev = "2ee4d1496 [features] -default = ["conduit_bin", "backend_rocksdb", "systemd", "element_hacks", "sentry_telemetry", "gzip_compression", "brotli_compression"] -conduit_bin = ["axum"] +default = ["backend_rocksdb", "systemd", "element_hacks", "sentry_telemetry", "gzip_compression", "brotli_compression"] backend_sqlite = ["sqlite"] backend_rocksdb = ["rocksdb"] rocksdb = ["rust-rocksdb", "num_cpus"] @@ -328,7 +326,6 @@ element_hacks = [] [[bin]] name = "conduit" path = "src/main.rs" -required-features = ["conduit_bin"] [lib] name = "conduit" diff --git a/src/api/ruma_wrapper/mod.rs b/src/api/ruma_wrapper/mod.rs index 94c7dd8e6bcd9810cd9efd6813753c39364d13b5..2b0cd06ba0ff1ef6e3a694f727acac3fa9aa6b03 100644 --- a/src/api/ruma_wrapper/mod.rs +++ b/src/api/ruma_wrapper/mod.rs @@ -4,7 +4,6 @@ use crate::Error; -#[cfg(feature = "conduit_bin")] mod axum; /// Extractor for Ruma request structs diff --git a/src/utils/error.rs b/src/utils/error.rs index fd14caeb819019dfd403de00df8733dbcd0a96b7..85fc1e7bb8315db499eefb08a49abb1a9fa7e410 100644 --- a/src/utils/error.rs +++ b/src/utils/error.rs @@ -68,10 +68,8 @@ pub enum Error { BadRequest(ErrorKind, &'static str), #[error("{0}")] Conflict(&'static str), // This is only needed for when a room alias already exists - #[cfg(feature = "conduit_bin")] #[error("{0}")] ExtensionError(#[from] axum::extract::rejection::ExtensionRejection), - #[cfg(feature = "conduit_bin")] #[error("{0}")] PathError(#[from] axum::extract::rejection::PathRejection), #[error("from {0}: {1}")] @@ -192,7 +190,6 @@ impl From<Infallible> for Error { fn from(i: Infallible) -> Self { match i {} } } -#[cfg(feature = "conduit_bin")] impl axum::response::IntoResponse for Error { fn into_response(self) -> axum::response::Response { self.to_response().into_response() } }