1
0
mirror of https://github.com/actix/actix-website synced 2024-11-27 18:12:57 +01:00

Merge pull request #44 from cirelli94/patch-1

Fix: unresolved import `actix_web`
This commit is contained in:
Nikolay Kim 2018-09-18 10:14:17 -07:00 committed by GitHub
commit 343cf8b7de
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;