forked from richerarc/saphir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (32 loc) · 948 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[package]
name = "saphir"
version = "2.0.0-alpha"
edition = "2018"
authors = ["Richer Archambault <[email protected]>"]
description = "Fully async-await http server framework"
documentation = "https://docs.rs/saphir"
homepage = "https://github.com/richerarc/saphir"
repository = "https://github.com/richerarc/saphir"
readme = "README.md"
keywords = ["hyper", "http", "server", "web", "async"]
license = "MIT"
[features]
default = []
https = ["base64", "rustls", "tokio-rustls"]
[dependencies]
log = "0.4"
hyper = "0.13"
tokio = { version = "0.2", features = ["full"] }
futures = "0.3"
futures-util = "0.3"
tower-service = "0.3"
cookie = { package = "saphir-cookie", version = "0.13" }
http = "0.2"
parking_lot = "0.10"
regex = "1.3"
rustls = { version = "0.16", optional = true }
tokio-rustls = { version = "0.12", optional = true }
base64 = { version = "0.11", optional = true }
[dev-dependencies]
tokio-timer = "0.2.13"
env_logger = "0.7"