Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: smol-rs/event-listener
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 65204dce731374fd33c1c5351a62d24cf3d57847
Choose a base ref
..
head repository: smol-rs/event-listener
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5623fc8dd36f0017c28a8c3bcf0259bc3f1d5ef9
Choose a head ref
Showing with 6 additions and 6 deletions.
  1. +5 −5 .github/workflows/ci.yml
  2. +1 −1 src/lib.rs
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -58,11 +58,11 @@ jobs:
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
- name: Install wasm-pack
uses: taiki-e/install-action@wasm-pack
- run: wasm-pack test --node
- run: wasm-pack test --node --no-default-features
- run: wasm-pack test --node --no-default-features --features portable-atomic
#- name: Install wasm-pack
# uses: taiki-e/install-action@wasm-pack
#- run: wasm-pack test --node
#- run: wasm-pack test --node --no-default-features
#- run: wasm-pack test --node --no-default-features --features portable-atomic
- name: Clone some dependent crates
run: |
git clone https://github.com/smol-rs/event-listener-strategy.git
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@
//! # Features
//!
//! - The `std` feature (enabled by default) enables the use of the Rust standard library. Disable it for `no_std`
//! support
//! support
//!
//! - The `portable-atomic` feature enables the use of the [`portable-atomic`] crate to provide
//! atomic operations on platforms that don't support them.