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 program should compile (using stable Rust version 1.53.0)
Current Behavior
The program does not compile, when running cargo build I get:
error: linking with `cc` failed: exit status: 1
... lots of undefined references ...
Steps to Reproduce (for bugs)
Cargo.toml
[package]
name = "actix-wont-compile"version = "0.1.0"edition = "2018"
[dependencies]
actix-multipart = "0.3"# I also tried "0.4.0-beta.5"actix-web = "3"# I also tried "4.0.0-beta.8"env_logger = "0.8"
Expected Behavior
The program should compile (using stable Rust version
1.53.0
)Current Behavior
The program does not compile, when running
cargo build
I get:Steps to Reproduce (for bugs)
Cargo.toml
main.rs
Then
cargo build
doesn't work.Context
This prevents building servers for file upload that also use logging.
Your Environment
rustc 1.53.0 (53cb7b09b 2021-06-17)
3
(and also the latest4.0.0-beta.8
)The text was updated successfully, but these errors were encountered: