ardaku / wavy

Asynchronous cross-platform real-time audio recording & playback.
https://docs.rs/crate/wavy/latest
Apache License 2.0
84 stars 4 forks source link

Update pasts requirement from 0.7 to 0.12 #43

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Updates the requirements on pasts to permit the latest version.

Changelog

Sourced from pasts's changelog.

[0.12.0] - 2022-07-31

Added

  • no-std feature

Changed

  • Executor::new() now takes impl Into<Arc<I>> instead of I
  • Executor::spawn() no longer requires Unpin futures
  • Sleep trait now requires Send + Sync + 'static
  • Started using core::hint::spin_loop() for default no-std executor

Removed

  • std feature - to use pasts on no-std environments use the new no-std feature instead

[0.11.0] - 2022-06-10

Added

  • Sleep trait for implementing custom executors
  • Notifier trait (like AsyncIterator, but infinite)
  • Poller struct for compatibility with futures
  • Fuse trait for turning Futures into Notifiers
  • Executor struct for custom executors
  • Loop struct for a notifier created from future producers
  • Box, Future, Pin, Exec (alias to core::task::Context), Executor, Fuse, Local, Task and Notifier to prelude.
  • Local type alias for !Send boxed Notifiers
  • Task type alias for Send boxed Notifiers

Changed

  • Loop renamed to Join
  • Join::on() now takes a closure for the notifier
  • Task got split into many different specialized types

Removed

  • poll_next_fn() in favor of new Poller type
  • block_on() - all futures must be spawned locally now (this change was made to support the same behavior on web assembly as other platforms)
  • BlockOn trait in favor of new Executor struct
  • Executor trait in favor of using new Sleep trait in combination with the Wake trait from the std library.

[0.10.0] - 2022-05-07

Added

  • More documentation
  • poll_next_fn()

Changed

  • Completely reimplemented Task so it doesn't always require allocation or Send (it should be more obvious which methods require allocation now)
  • Loop::on() accepts different types for the second parameter

... (truncated)

Commits
  • e56b8b9 v0.12.0
  • b5b5f0e Change method of "async main" used in examples
  • 4c47900 Start using core::hint::spin_loop() for default no-std executor
  • 739843c Make Sleep require Send + Sync + 'static
  • 6b99da3 Edit wording in README.md
  • 2449a40 Replace std feature with no-std feature (#22)
  • 564df5c Update README.md
  • 0175cc3 Edit link in related projects section of readme
  • 65a0d8d Add "Related Projects" section to README.md
  • 408e45c Executor::new() now takes impl Into\<Arc<I>> instead of I
  • Additional commits viewable in compare view


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
AldaronLau commented 2 years ago

Closing in favor of https://github.com/libcala/wavy/pull/45

dependabot[bot] commented 2 years ago

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.