You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bhttp crate fails to build due to #[cfg(feature = "stream")] attribute in bhttp/src/err.rs, but the "stream" feature is not defined in bhttp/Cargo.toml.
Error:
error: unexpected `cfg` condition value: `stream`
--> bhttp/src/err.rs:10:11
|
10 | #[cfg(feature = "stream")]
| ^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `bhttp`, `default`, `http`, `read-bhttp`, `read-http`, `url`, `write-bhttp`, and `write-http`
= help: consider adding `stream` as a feature in `Cargo.toml`
Since this feature and the corresponding error ChunkTooLarge don't appear to be used, it can simply be fixed by removing these lines:
The
bhttp
crate fails to build due to#[cfg(feature = "stream")]
attribute in bhttp/src/err.rs, but the "stream" feature is not defined inbhttp/Cargo.toml
.Error:
Since this feature and the corresponding error
ChunkTooLarge
don't appear to be used, it can simply be fixed by removing these lines:ohttp/bhttp/src/err.rs
Lines 9 to 11 in fd72888
The text was updated successfully, but these errors were encountered: