Skip to content

Commit

Permalink
Updated wasi-web's Cargo.lock and fixed a compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-F-Bryan committed Aug 17, 2023
1 parent bab9fa6 commit 2d7ba1d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/wasi-web/Cargo.lock

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

5 changes: 4 additions & 1 deletion lib/wasix/src/http/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ pub mod reqwest;
#[cfg(feature = "js")]
mod web_http_client;

pub use self::{client::*, web_http_client::WebHttpClient};
#[cfg(feature = "js")]
pub use self::web_http_client::WebHttpClient;

pub use self::client::*;

pub(crate) const USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "-", env!("CARGO_PKG_VERSION"));

Expand Down

0 comments on commit 2d7ba1d

Please sign in to comment.