1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-21 17:33:59 +00:00

use dev cookies package as temp solution for ring problem

This commit is contained in:
Nikolay Kim 2018-01-05 14:50:33 -08:00
parent 524493e0b0
commit 473ec38439

View file

@ -54,7 +54,10 @@ percent-encoding = "1.0"
smallvec = "0.6"
bitflags = "1.0"
num_cpus = "1.0"
cookie = { version="0.10", features=["percent-encode", "secure"] }
# temp solution
# cookie = { version="0.10", features=["percent-encode", "secure"] }
cookie = { git="https://github.com/alexcrichton/cookie-rs.git", features=["percent-encode", "secure"] }
# io
mio = "0.6"
@ -110,6 +113,3 @@ members = [
"examples/websocket",
"examples/websocket-chat",
]
[patch.crates-io]
ring = { git = "https://github.com/SergioBenitez/ring", branch = "v0.12" }