1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 06:57:43 +02:00

add protobuf feature

This commit is contained in:
Nikolay Kim
2018-03-08 20:56:18 -08:00
parent 3f0803a7d3
commit f3c63e631a
10 changed files with 83 additions and 83 deletions

View File

@ -38,6 +38,9 @@ alpn = ["openssl", "openssl/v102", "openssl/v110", "tokio-openssl"]
# sessions
session = ["cookie/secure"]
# protobuf
protobuf = ["prost"]
[dependencies]
actix = "^0.5.2"
@ -60,7 +63,6 @@ rand = "0.4"
regex = "0.2"
serde = "1.0"
serde_json = "1.0"
prost = "^0.2"
sha1 = "0.6"
smallvec = "0.6"
time = "0.1"
@ -88,6 +90,9 @@ tokio-tls = { version="0.1", optional = true }
openssl = { version="0.10", optional = true }
tokio-openssl = { version="0.2", optional = true }
# protobuf
prost = { version="^0.2", optional = true }
[dev-dependencies]
env_logger = "0.5"
skeptic = "0.13"