Skip to content

Commit

Permalink
change reexports
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Nov 4, 2024
1 parent 698dce2 commit 49bbe43
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion crates/kitsune-http-client/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ pub use self::body::Body;
pub type ResponseBody = BoxBody;

pub use ::http;
pub use ::http_body_util;

/// Client error type
pub struct Error {
Expand Down
1 change: 1 addition & 0 deletions crates/kitsune-wasm-mrf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ derive_more = { version = "1.0.0", features = ["from"] }
enum_dispatch = "0.3.13"
fred = { workspace = true }
futures-util = { version = "0.3.31", default-features = false, features = ["alloc"] }
http-body-util = "0.1.2"
kitsune-config = { workspace = true }
kitsune-derive = { workspace = true }
kitsune-error = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/kitsune-wasm-mrf/src/http.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use crate::{
};
use async_trait::async_trait;
use futures_util::TryStreamExt;
use kitsune_http_client::http_body_util::{BodyDataStream, BodyExt};
use http_body_util::{BodyDataStream, BodyExt};
use wasmtime::component::Resource;

pub type Body = BodyDataStream<kitsune_http_client::ResponseBody>;
Expand Down

0 comments on commit 49bbe43

Please sign in to comment.