From 17774b34aefd28ff933e9346245b65d1442fb3fb Mon Sep 17 00:00:00 2001 From: John Nunley Date: Mon, 11 Sep 2023 08:41:59 -0700 Subject: [PATCH] Switch to using published crates Replace the Git patch and use event-listener v3.0.0 and event-listener-strategy v0.1.0 from crates.io. Signed-off-by: John Nunley --- .github/workflows/ci.yml | 1 - Cargo.toml | 7 ++----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77fd6e2..8b55472 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,6 @@ jobs: - name: Run cargo check (without dev-dependencies to catch missing feature flags) run: cargo hack build --all --no-dev-deps - run: cargo hack build --all --target thumbv7m-none-eabi --no-default-features --no-dev-deps - - run: cargo hack build --target thumbv7m-none-eabi --no-default-features --no-dev-deps --features portable-atomic msrv: runs-on: ubuntu-latest diff --git a/Cargo.toml b/Cargo.toml index 72983ec..ed92ba1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,8 +16,8 @@ exclude = ["/.*"] [dependencies] concurrent-queue = { version = "2", default-features = false } -event-listener = { version = "2.4.0", default-features = false } -event-listener-strategy = { git = "https://github.com/smol-rs/event-listener", default-features = false } +event-listener = { version = "3.0.0", default-features = false } +event-listener-strategy = { version = "0.2.0", default-features = false } futures-core = { version = "0.3.5", default-features = false } pin-project-lite = "0.2.11" @@ -28,6 +28,3 @@ futures-lite = "1" [features] default = ["std"] std = ["concurrent-queue/std", "event-listener/std", "event-listener-strategy/std"] - -[patch.crates-io] -event-listener = { git = "https://github.com/smol-rs/event-listener", default-features = false }