1
0
mirror of https://github.com/actix/actix-website synced 2024-11-24 00:41:07 +01:00

Fix: unresolved import actix_web

Fixed error[E0432]: unresolved import `actix_web` adding extern crate actix_web
This commit is contained in:
Cirelli 2018-09-03 13:04:36 +02:00 committed by GitHub
parent 444f6a0eef
commit a52fa2fd2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,6 +41,7 @@ listenfd = "0.3"
Then modify your server code to only invoke `bind` as a fallback:
```rust
extern crate actix_web;
extern crate listenfd;
use listenfd::ListenFd;