changeset 587:c0454e18fca0

Disable async-by-default
author Lewin Bormann <lbo@spheniscida.de>
date Wed, 28 Sep 2022 11:29:38 +0200
parents acb33b545ce1
children c7118356c1f5
files .github/workflows/test.yml Cargo.toml
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/.github/workflows/test.yml	Wed Sep 28 11:26:41 2022 +0200
+++ b/.github/workflows/test.yml	Wed Sep 28 11:29:38 2022 +0200
@@ -8,7 +8,7 @@
     strategy:
       fail-fast: false
       matrix:
-        features: ["async"]
+        features: ["async", ""]
         platform: [ubuntu-latest, windows-latest, macos-latest]
     runs-on: ${{ matrix.platform }}
     steps:
--- a/Cargo.toml	Wed Sep 28 11:26:41 2022 +0200
+++ b/Cargo.toml	Wed Sep 28 11:29:38 2022 +0200
@@ -23,7 +23,7 @@
 tokio = { optional = true, features = ["rt", "sync"], version = ">= 1.21" }
 
 [features]
-default = ["async"]
+default = []
 async = ["tokio"]
 
 [dev-dependencies]