1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-07-01 19:47:18 +00:00

add ssl feature migration

This commit is contained in:
Nikolay Kim 2019-12-30 21:22:04 +06:00
parent bcb5086c91
commit 67793c5d92

View file

@ -20,7 +20,7 @@
* Feature `rust-tls` renamed to `rustls`
instead of
```rust
actix-web = { version = "2.0.0", features = ["rust-tls"] }
```
@ -31,6 +31,20 @@
actix-web = { version = "2.0.0", features = ["rustls"] }
```
* Feature `ssl` renamed to `openssl`
instead of
```rust
actix-web = { version = "2.0.0", features = ["ssl"] }
```
use
```rust
actix-web = { version = "2.0.0", features = ["openssl"] }
```
## 1.0.1