Skip to content

Commit

Permalink
add ssl feature migration
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Dec 30, 2019
1 parent bcb5086 commit 67793c5
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion MIGRATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
* Feature `rust-tls` renamed to `rustls`

instead of

```rust
actix-web = { version = "2.0.0", features = ["rust-tls"] }
```
Expand All @@ -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

Expand Down

0 comments on commit 67793c5

Please sign in to comment.