forked from petertrotman/actix-web-middleware-redirect-https
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
20 lines (18 loc) · 801 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "actix-web-middleware-redirect-https"
version = "1.0.0"
description = "A middleware for actix-web which forwards all `http` requests to `https` with optional url string replacement."
authors = ["Peter Trotman <[email protected]>"]
edition = "2018"
license = "MIT"
documentation = "https://docs.rs/actix-web-middleware-redirect-https"
repository = "https://github.com/petertrotman/actix-web-middleware-redirect-https"
readme = "README.md"
keywords = ["actix-web", "middleware", "redirect", "https", "ssl"]
categories = ["web-programming", "web-programming::http-server"]
[dependencies]
actix-service = "1.0.5"
actix-web = "2.0.0"
futures = "0.3.1"
[badges]
travis-ci = { repository = "https://travis-ci.org/petertrotman/actix-web-middleware-redirect-https", branch = "master" }