From c8bbfc59b18f56133e1d8d953ac21eea3e8b1355 Mon Sep 17 00:00:00 2001 From: Hamza Date: Sat, 23 Jan 2021 17:56:01 +0500 Subject: [PATCH] fix yew-stdweb --- .github/workflows/pull-request.yml | 2 +- packages/yew-stdweb/Cargo.toml | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index dd4db96d19e..26280de26dd 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -125,7 +125,7 @@ jobs: # To fix this we just run them on yew but with yew-stdweb's default features enabled. cd packages/yew cargo test --doc \ - --no-default-features --features "services agent std_web" \ + --no-default-features --features "agent std_web" \ --features "doc_test wasm_test yaml msgpack cbor toml" integration_tests: diff --git a/packages/yew-stdweb/Cargo.toml b/packages/yew-stdweb/Cargo.toml index 251e59257d4..bac365d730d 100644 --- a/packages/yew-stdweb/Cargo.toml +++ b/packages/yew-stdweb/Cargo.toml @@ -64,11 +64,10 @@ rmp-serde = "0.14.0" bincode = "1" [features] -default = ["services", "agent", "std_web"] +default = ["agent", "std_web"] std_web = ["stdweb"] doc_test = [] wasm_test = [] -services = [] agent = ["bincode"] yaml = ["serde_yaml"] msgpack = ["rmp-serde"]