From 1a1c0053d683be080cbc32a5afe9289af9b6f46a Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 29 Sep 2020 00:24:19 +0100 Subject: [PATCH] enable new sse feature for rocket See https://github.com/SergioBenitez/Rocket/pull/1365 Signed-off-by: Ian Jackson --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 910fd7f0..75cf41f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -85,7 +85,7 @@ arrayvec = "0" #rocket = "0.4" rocket_contrib = { version = "0.4", default-features=false, features=["tera_templates","helmet","json","serve"], git = "file:///home/ian/Rustup/Game/rocket/.git", branch = "Game-rocket-contrib" } -rocket = { git = "file:///home/ian/Rustup/Game/rocket/.git", branch = "Game-rocket" } +rocket = { git = "file:///home/ian/Rustup/Game/rocket/.git", branch = "Game-rocket", features = ["sse"] } percent-encoding = "2" @@ -105,7 +105,7 @@ argparse = "0.2" inventory = "0.1" [patch.crates-io] -rocket = { git = "file:///home/ian/Rustup/Game/rocket/.git", branch = "Game-rocket" } +rocket = { git = "file:///home/ian/Rustup/Game/rocket/.git", branch = "Game-rocket", features = ["sse"] } rocket_codegen = { git = "file:///home/ian/Rustup/Game/rocket/.git", branch = "Game-rocket-codegen" } rocket_http = { git = "file:///home/ian/Rustup/Game/rocket/.git", branch = "Game-rocket-http" } rocket_contrib = { git = "file:///home/ian/Rustup/Game/rocket/.git", branch = "Game-rocket-contrib", default-features=false, features=["tera_templates","helmet","json"] } -- 2.30.2