From 473ec38439097b3956945361d5446766c7d0685c Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Fri, 5 Jan 2018 14:50:33 -0800 Subject: [PATCH] use dev cookies package as temp solution for ring problem --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d81057fc..585a3211 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" }