-
-
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: changlog + version bump fix clippy warnings Remove the pointer and closure methods after all Try to fix docs.rs readme
- Loading branch information
Showing
10 changed files
with
44 additions
and
90 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
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 |
---|---|---|
|
@@ -13,24 +13,23 @@ pin-project = "^0.4.0-beta" | |
features = ["async-await", "nightly"] | ||
version = "^0.3.0-alpha" | ||
|
||
[dev-dependencies] | ||
assert_matches = "^1" | ||
|
||
[features] | ||
external_doc = [] | ||
|
||
[package] | ||
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" | ||
keywords = ["observer", "futures", "stream", "broadcast", "publish_subscribe"] | ||
license = "Unlicense" | ||
name = "pharos" | ||
readme = "README.md" | ||
repository = "https://github.com/najamelan/pharos" | ||
version = "0.3.0" | ||
version = "0.3.1" | ||
|
||
[package.metadata] | ||
[package.metadata."docs.rs"] | ||
[package.metadata.docs] | ||
[package.metadata.docs.rs] | ||
all-features = true |
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 |
---|---|---|
|
@@ -10,21 +10,22 @@ package: | |
# - merge dev branch into master | ||
# - create git tag | ||
# | ||
version : 0.3.0 | ||
name : pharos | ||
authors : [ Naja Melan <[email protected]> ] | ||
edition : '2018' | ||
readme : README.md | ||
license : Unlicense | ||
|
||
repository : https://github.com/najamelan/pharos | ||
description : Observer pattern which generates a futures 0.3 stream of events | ||
categories : [ asynchronous ] | ||
keywords : [ observer, futures, stream, broadcast, publish_subscribe ] | ||
version : 0.3.1 | ||
name : pharos | ||
authors : [ Naja Melan <[email protected]> ] | ||
edition : '2018' | ||
readme : README.md | ||
license : Unlicense | ||
repository : https://github.com/najamelan/pharos | ||
documentation : https://docs.rs/pharos | ||
description : Observer pattern which generates a futures 0.3 stream of events | ||
categories : [ asynchronous ] | ||
keywords : [ observer, futures, stream, broadcast, publish_subscribe ] | ||
|
||
metadata: | ||
docs.rs: | ||
all-features: true | ||
docs: | ||
rs: | ||
all-features: true | ||
|
||
|
||
features: | ||
|
@@ -45,7 +46,3 @@ dependencies: | |
futures-preview : { version: ^0.3.0-alpha, features: [async-await, nightly] } | ||
pin-project : ^0.4.0-beta | ||
|
||
|
||
dev-dependencies: | ||
|
||
assert_matches: ^1 |
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
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
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 |
---|---|---|
|
@@ -72,12 +72,4 @@ mod import | |
} , | ||
}, | ||
}; | ||
|
||
|
||
#[ cfg( test ) ] | ||
// | ||
pub(crate) use | ||
{ | ||
assert_matches :: { assert_matches } , | ||
}; | ||
} |
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