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"]