-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dev: Update changelog. Install tarpaulin in CI. Fix clippy warnings. No nightly in test.bash after all. Add funding. Update to edition 2021. Fix CI. We need feature std on futures for channel. Fix errors in changelog.
- Loading branch information
Showing
8 changed files
with
52 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
liberapay: najamelan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,8 +56,19 @@ jobs: | |
run : bash ci/test.bash | ||
|
||
|
||
- name: Check coverage | ||
run: bash ci/coverage.bash | ||
- name: Install cargo-tarpaulin binary crate | ||
uses: actions-rs/[email protected] | ||
with: | ||
crate: cargo-tarpaulin | ||
version: latest | ||
use-tool-cache: true | ||
|
||
- name: Run cargo-tarpaulin | ||
run : | | ||
cargo tarpaulin --out Xml | ||
- name: Upload to codecov.io | ||
uses: codecov/[email protected] | ||
|
||
|
||
- name: install wasm-pack | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ rustc_version = "^0.4" | |
[dependencies] | ||
[dependencies.futures] | ||
default-features = false | ||
features = ["std"] | ||
version = "^0.3" | ||
|
||
[dev-dependencies] | ||
|
@@ -32,14 +33,14 @@ authors = ["Naja Melan <[email protected]>"] | |
categories = ["asynchronous"] | ||
description = "Observer pattern which generates a futures 0.3 stream of events" | ||
documentation = "https://docs.rs/pharos" | ||
edition = "2018" | ||
edition = "2021" | ||
exclude = ["tests", "examples", "ci", ".travis.yml", "TODO.md", "CONTRIBUTING.md"] | ||
keywords = ["observer", "futures", "stream", "broadcast", "publish_subscribe"] | ||
license = "Unlicense" | ||
name = "pharos" | ||
readme = "README.md" | ||
repository = "https://github.com/najamelan/pharos" | ||
version = "0.5.2" | ||
version = "0.5.3" | ||
|
||
[package.metadata] | ||
[package.metadata.docs] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,10 +24,10 @@ package: | |
# - `git tag x.x.x` with version number. | ||
# - `git push && git push --tags` | ||
# | ||
version : 0.5.2 | ||
version : 0.5.3 | ||
name : pharos | ||
authors : [ Naja Melan <[email protected]> ] | ||
edition : '2018' | ||
edition : '2021' | ||
readme : README.md | ||
license : Unlicense | ||
repository : https://github.com/najamelan/pharos | ||
|
@@ -52,15 +52,15 @@ badges: | |
|
||
dependencies: | ||
|
||
futures: { version: ^0.3, default-features: false } | ||
futures: { version: ^0.3, default-features: false, features: [std] } | ||
|
||
|
||
dev-dependencies: | ||
|
||
futures : ^0.3 | ||
assert_matches : ^1 | ||
async-std : { version: ^1 , features: [attributes] } | ||
async_executors : { version: ^0.4, features: [ async_std ] } | ||
async-std : { version: ^1 , features: [ attributes ] } | ||
async_executors : { version: ^0.4, features: [ async_std ] } | ||
wasm-bindgen-test : ^0.3 | ||
|
||
build-dependencies: | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters