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
error[E0599]: no method named `decode` found for reference `&'static encoding_rs::Encoding` in the current scope
|
99 | let (result, encoding, _) = detector.guess(None, true).decode(input);
| ^^^^^^ method not found in `&'static encoding_rs::Encoding`
As default features are disabled, the feature alloc introduced in encoding_rs v0.8.29 was disabled, which made methods like decode unavailable.
As a workaround I can add encoding_rs = "=0.8.28" in my Cargo.toml, but a fix on this crate is necessary.
As default features are disabled, the feature
alloc
introduced inencoding_rs v0.8.29
was disabled, which made methods likedecode
unavailable.As a workaround I can add
encoding_rs = "=0.8.28"
in myCargo.toml
, but a fix on this crate is necessary.Related issue: hsivonen/encoding_rs#73
The text was updated successfully, but these errors were encountered: