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[E0432]: unresolved import `native_tls`
--> /home/lukas/.cargo/registry/src/github.com-1ecc6299db9ec823/ureq-0.4.8/src/error.rs:1:5
|
1 | use native_tls::Error as TlsError;
| ^^^^^^^^^^ Maybe a missing `extern crate native_tls;`?
error[E0432]: unresolved import `native_tls`
--> /home/lukas/.cargo/registry/src/github.com-1ecc6299db9ec823/ureq-0.4.8/src/error.rs:2:5
|
2 | use native_tls::HandshakeError;
| ^^^^^^^^^^ Maybe a missing `extern crate native_tls;`?
error[E0599]: no variant named `Https` found for type `stream::Stream` in the current scope
--> /home/lukas/.cargo/registry/src/github.com-1ecc6299db9ec823/ureq-0.4.8/src/stream.rs:28:17
|
12 | pub enum Stream {
| --------------- variant `Https` not found here
...
28 | Stream::Https(_) => "https",
| ^^^^^^^^^^^^^^^^ variant not found in `stream::Stream`
|
= note: did you mean `stream::Stream::Http`?
error[E0599]: no variant named `Https` found for type `stream::Stream` in the current scope
--> /home/lukas/.cargo/registry/src/github.com-1ecc6299db9ec823/ureq-0.4.8/src/stream.rs:41:13
|
12 | pub enum Stream {
| --------------- variant `Https` not found here
...
41 | Stream::Https(_) => true,
| ^^^^^^^^^^^^^^^^ variant not found in `stream::Stream`
|
= note: did you mean `stream::Stream::Http`?
error[E0599]: no variant named `Https` found for type `stream::Stream` in the current scope
--> /home/lukas/.cargo/registry/src/github.com-1ecc6299db9ec823/ureq-0.4.8/src/stream.rs:59:13
|
12 | pub enum Stream {
| --------------- variant `Https` not found here
...
59 | Stream::Https(stream) => stream.read(buf),
| ^^^^^^^^^^^^^^^^^^^^^ variant not found in `stream::Stream`
|
= note: did you mean `stream::Stream::Http`?
error[E0599]: no variant named `Https` found for type `stream::Stream` in the current scope
--> /home/lukas/.cargo/registry/src/github.com-1ecc6299db9ec823/ureq-0.4.8/src/stream.rs:71:13
|
12 | pub enum Stream {
| --------------- variant `Https` not found here
...
71 | Stream::Https(stream) => stream.write(buf),
| ^^^^^^^^^^^^^^^^^^^^^ variant not found in `stream::Stream`
|
= note: did you mean `stream::Stream::Http`?
error[E0599]: no variant named `Https` found for type `stream::Stream` in the current scope
--> /home/lukas/.cargo/registry/src/github.com-1ecc6299db9ec823/ureq-0.4.8/src/stream.rs:80:13
|
12 | pub enum Stream {
| --------------- variant `Https` not found here
...
80 | Stream::Https(stream) => stream.flush(),
| ^^^^^^^^^^^^^^^^^^^^^ variant not found in `stream::Stream`
|
= note: did you mean `stream::Stream::Http`?
The text was updated successfully, but these errors were encountered:
Hi there!
I tried to build without default features:
Sadly, this results in:
The text was updated successfully, but these errors were encountered: