oasisprotocol / oasis-sdk

Official SDK for the Oasis Network.
Apache License 2.0
73 stars 20 forks source link

runtime-sdk: bump the rust group across 1 directory with 18 updates #1985

Closed dependabot[bot] closed 2 weeks ago

dependabot[bot] commented 2 weeks ago

Bumps the rust group with 18 updates in the / directory:

Package From To
async-trait 0.1.81 0.1.82
anyhow 1.0.86 1.0.89
once_cell 1.19.0 1.20.0
tokio 1.39.3 1.40.0
syn 2.0.75 2.0.77
walrus 0.20.3 0.21.2
wat 1.216.0 1.217.0
wasmprinter 0.211.1 0.217.0
pretty_assertions 1.4.0 1.4.1
primitive-types 0.12.2 0.13.1
rlp 0.5.2 0.6.1
uint 0.9.5 0.10.0
serde 1.0.208 1.0.210
serde_json 1.0.125 1.0.128
proc-macro-crate 3.1.0 3.2.0
rustls 0.23.12 0.23.13
webpki-root-certs 0.26.4 0.26.5
mockito 0.31.1 1.5.0

Updates async-trait from 0.1.81 to 0.1.82

Release notes

Sourced from async-trait's releases.

0.1.82

  • Prevent elided_named_lifetimes lint being produced in generated code (#276)
Commits
  • f8e5bb4 Release 0.1.82
  • 8fbf118 Merge pull request #276 from dtolnay/elidednamed
  • 6fa246a Ignore nightly's new elided_named_lifetimes lint in generated code
  • d542a0d Upload CI Cargo.lock for reproducing failures
  • 8828c35 Sort dependency features in Cargo.toml
  • ba9793a Update ui test suite to nightly-2024-08-11
  • 82c62cd Update ui test suite to nightly-2024-07-25
  • 370ee12 Update ui test suite to nightly-2024-07-20
  • See full diff in compare view


Updates anyhow from 1.0.86 to 1.0.89

Release notes

Sourced from anyhow's releases.

1.0.89

  • Make anyhow::Error's UnwindSafe and RefUnwindSafe impl consistently available between versions of Rust newer and older than 1.72 (#386)

1.0.88

  • Documentation improvements

1.0.87

  • Support more APIs, including Error::new and Error::chain, in no-std mode on Rust 1.81+ (#383)
Commits
  • 9d3fb6d Release 1.0.89
  • 830c399 Merge pull request #386 from dtolnay/unwindsafe
  • 8454be3 Ensure UnwindSafe even with "backtrace" feature enabled and old Rust
  • a85e414 Add more autotraits tests
  • 139f266 Release 1.0.88
  • aa3ab2b Merge pull request #385 from dtolnay/docnostd
  • 44c3767 Update documentation on no-std error type conversions
  • afe93e7 Release 1.0.87
  • d58fa4b Fix outdated html_root_url
  • c18d807 Disable unused doc_cfg feature
  • Additional commits viewable in compare view


Updates once_cell from 1.19.0 to 1.20.0

Changelog

Sourced from once_cell's changelog.

1.20.0

  • propagate critical-section feature selection into portable-atomic; other minor updates #260
Commits
  • 72f7c2e Merge pull request #260 from brodycj/propagate-critical-section-to-portable-a...
  • be6b623 v1.20.0
  • f2d95bf update Cargo (dev-)dependencies; update Cargo.lock.msrv
  • dd6b5c2 ci: fix TEST_BETA with TEMPORARY WORKAROUND in RUSTFLAGS
  • 7317eae add cargo test --workspace to beginning of TEST task
  • bd54bf7 fix default-features flag for parking_lot_core in dependencies
  • bb70b9e cargo fmt updates
  • b433a8c propagate critical-section feature selection into portable-atomic
  • See full diff in compare view


Updates tokio from 1.39.3 to 1.40.0

Release notes

Sourced from tokio's releases.

Tokio v1.40.0

1.40.0 (August 30th, 2024)

Added

  • io: add util::SimplexStream (#6589)
  • process: stabilize Command::process_group (#6731)
  • sync: add {TrySendError,SendTimeoutError}::into_inner (#6755)
  • task: add JoinSet::join_all (#6784)

Added (unstable)

  • runtime: add Builder::{on_task_spawn, on_task_terminate} (#6742)

Changed

  • io: use vectored io for write_all_buf when possible (#6724)
  • runtime: prevent niche-optimization to avoid triggering miri (#6744)
  • sync: mark mpsc types as UnwindSafe (#6783)
  • sync,time: make Sleep and BatchSemaphore instrumentation explicit roots (#6727)
  • task: use NonZeroU64 for task::Id (#6733)
  • task: include panic message when printing JoinError (#6753)
  • task: add #[must_use] to JoinHandle::abort_handle (#6762)
  • time: eliminate timer wheel allocations (#6779)

Documented

  • docs: clarify that [build] section doesn't go in Cargo.toml (#6728)
  • io: clarify zero remaining capacity case (#6790)
  • macros: improve documentation for select! (#6774)
  • sync: document mpsc channel allocation behavior (#6773)

#6589: tokio-rs/tokio#6589 #6724: tokio-rs/tokio#6724 #6727: tokio-rs/tokio#6727 #6728: tokio-rs/tokio#6728 #6731: tokio-rs/tokio#6731 #6733: tokio-rs/tokio#6733 #6742: tokio-rs/tokio#6742 #6744: tokio-rs/tokio#6744 #6753: tokio-rs/tokio#6753 #6755: tokio-rs/tokio#6755 #6762: tokio-rs/tokio#6762 #6773: tokio-rs/tokio#6773 #6774: tokio-rs/tokio#6774 #6779: tokio-rs/tokio#6779 #6783: tokio-rs/tokio#6783 #6784: tokio-rs/tokio#6784 #6790: tokio-rs/tokio#6790

Commits


Updates syn from 2.0.75 to 2.0.77

Release notes

Sourced from syn's releases.

2.0.77

  • Support parsing Expr::Tuple in non-"full" mode (#1727)

2.0.76

  • Enforce that tail call become keyword is followed by an expression (#1725)
Commits
  • 6232266 Release 2.0.77
  • 97acbf0 Merge pull request #1727 from dtolnay/exprparen
  • a3b5a5c Support parsing Expr::Tuple in derive
  • 3c24f57 Run upload-artifact action regardless of previous step failure
  • 78608a3 Upload CI Cargo.lock for reproducing failures
  • ef3e9c6 Release 2.0.76
  • 8f7365f Merge pull request #1725 from dtolnay/tailcall
  • 6cddd9e Make tail call expr mandatory
  • See full diff in compare view


Updates walrus from 0.20.3 to 0.21.2

Release notes

Sourced from walrus's releases.

0.21.2

What's Changed

New Contributors

Full Changelog: https://github.com/rustwasm/walrus/compare/0.21.1...0.21.2

0.21.1

What's Changed

New Contributors

Full Changelog: https://github.com/rustwasm/walrus/compare/0.21.0...0.21.1

0.21.0

What's Changed

New Contributors

Full Changelog: https://github.com/rustwasm/walrus/compare/0.20.3...0.21.0

Commits


Updates wat from 1.216.0 to 1.217.0

Commits
  • 46cb2e8 Release wasm-tools 1.217.0 (#1772)
  • dabd1cd Update *.wast parser with recently added directives (#1762)
  • ebfd6a0 Tweak printing page sizes in text format (#1769)
  • 668cb31 Fix wasm-smith's page_size calculation (#1770)
  • 346f26c Rename MaybeType variants, tweak documentation (#1737)
  • 50f63d4 Share more core type infrastructure in components (#1765)
  • b1766fb Start moving toward wasm_encoder in wast's core wasm encoding (#1767)
  • 97fe512 Proceed to the next step in the "remove interface" transition (#1753)
  • c4a77ae Fix running tests with RUST_BACKTRACE=1 (#1761)
  • 50aef2f Add a shorthand feature constructor for Wasm 3.0 (#1760)
  • Additional commits viewable in compare view


Updates wasmprinter from 0.211.1 to 0.217.0

Commits


Updates pretty_assertions from 1.4.0 to 1.4.1

Release notes

Sourced from pretty_assertions's releases.

v1.4.1

Fixed

  • Show feature-flagged code in documentation. Thanks to @​sandydoo for the fix! (#130)

Internal

  • Bump yansi version to 1.x. Thanks to @​SergioBenitez for the update, and maintaining this library! (#121)
Changelog

Sourced from pretty_assertions's changelog.

v1.4.1

Fixed

  • Show feature-flagged code in documentation. Thanks to @​sandydoo for the fix! (#130)

Internal

  • Bump yansi version to 1.x. Thanks to @​SergioBenitez for the update, and maintaining this library! (#121)
Commits
  • f5c5b24 chore: prep 1.4.1 release
  • d34d524 chore: display feature-flagged docs on docs.rs
  • fac4273 Merge pull request #131 from sandydoo/fix-yansi-deprecation
  • 1e51cce chore: rename deprecated yansi methods
  • 4a0e5a3 Merge pull request #121 from SergioBenitez/yansi-update
  • 08838fe internal: bump MSRV to 1.63.0 for yansi
  • 777387d ci: bump runner to windows-2022
  • 35c08fe chore: update 'yansi' to 1.0.0-rc
  • See full diff in compare view


Updates primitive-types from 0.12.2 to 0.13.1

Commits


Updates rlp from 0.5.2 to 0.6.1

Commits


Updates uint from 0.9.5 to 0.10.0

Commits


Updates serde from 1.0.208 to 1.0.210

Release notes

Sourced from serde's releases.

v1.0.210

  • Support serializing and deserializing IpAddr and SocketAddr in no-std mode on Rust 1.77+ (#2816, thanks @​MathiasKoch)
  • Make serde::ser::StdError and serde::de::StdError equivalent to core::error::Error on Rust 1.81+ (#2818)

v1.0.209

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#2805, thanks @​Mingun)
Commits
  • 89c4b02 Release 1.0.210
  • eeb8e44 Merge pull request #2818 from dtolnay/coreerror
  • 785c2d9 Stabilize no-std StdError trait
  • d549f04 Reformat parse_ip_impl definition and calls
  • 4c0dd63 Delete attr support from core::net deserialization macros
  • 26fb134 Relocate cfg attrs out of parse_ip_impl and parse_socket_impl
  • 07e614b Merge pull request #2817 from dtolnay/corenet
  • b1f899f Delete doc(cfg) attribute from impls that are supported in no-std
  • b4f860e Merge pull request #2816 from MathiasKoch/chore/core-net
  • d940fe1 Reuse existing Buf wrapper as replacement for std::io::Write
  • Additional commits viewable in compare view


Updates serde_json from 1.0.125 to 1.0.128

Release notes

Sourced from serde_json's releases.

1.0.128

  • Support serializing maps containing 128-bit integer keys to serde_json::Value (#1188, thanks @​Mrreadiness)

1.0.127

1.0.126

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#1182, thanks @​CryZe)
Commits
  • d96b1d9 Release 1.0.128
  • 599228d Merge pull request #1188 from Mrreadiness/feat/add-hashmap-key-128-serializer
  • 5416cee feat: add support for 128 bit HashMap key serialization
  • 27a4ca9 Upload CI Cargo.lock for reproducing failures
  • 5ebf65c Release 1.0.127
  • f287a3b Merge pull request 1179 from GREsau/patch-1
  • ec980b0 Release 1.0.126
  • e6282b0 Merge pull request #1184 from serde-rs/fastarithmetic
  • ffc4a43 Improve cfg names for fast arithmetic
  • 4b1048d Merge pull request #1183 from serde-rs/arithmetic
  • Additional commits viewable in compare view


Updates proc-macro-crate from 3.1.0 to 3.2.0

Release notes

Sourced from proc-macro-crate's releases.

v3.2.0

What's Changed

Full Changelog: https://github.com/bkchr/proc-macro-crate/compare/v3.0.1...v3.2.0

Commits


Updates rustls from 0.23.12 to 0.23.13

Commits
  • a8d875f Prepare 0.23.13
  • bc892cd kx: work around aws-lc-rs accepting more point formats
  • 9730181 Take aws-lc-rs 1.9 and enable prebuilt-nasm
  • 1376edd fix(deps): update rust crate zlib-rs to 0.3
  • 696a1ef added links to rustls-wolfcrypt-provider in the third-party crypto providers ...
  • f05b0cc validate_ffdhe_params: also validate constants
  • 37af3c1 Override default ffdhe_group() for all kx impls
  • 92ff3d8 Deprecate and remove use of FfdheGroup::named_group
  • 483fece Deprecate and remove use of FfdheGroup::from_named_group
  • 97191e0 Have key exchange types know their FFDHE group
  • Additional commits viewable in compare view


Updates webpki-root-certs from 0.26.4 to 0.26.5

Release notes

Sourced from webpki-root-certs's releases.

0.26.5

New trust anchors

What's Changed

Full Changelog: https://github.com/rustls/webpki-roots/compare/v/0.26.4...v/0.26.5

Commits


Updates mockito from 0.31.1 to 1.5.0

Release notes

Sourced from mockito's releases.

1.5.0

Thanks to @​tottoto

1.4.0

  • [Breaking] Bump minimum supported Rust version to 1.70 and revert version constraints on the colored crate

1.3.1

  • Fixed a bug where Semaphore::const_new wasn't available on Tokio < 1.30 because of the missing Tokio parking_lot feature flag
  • Use the Tokio runtime everywhere to remove the need for the futures crate (aside from futures-core)

Thanks to @​tottoto

1.3.0

  • Introduced Server::new_with_opts, Server::new_with_opts_async and the ServerOpts struct to allow configuring the server host, port and enabling auto-asserts (see next item)
  • Added the assert_on_drop server option that allows you to automatically call assert() whenever your mocks go out of scope (defaults to false)
  • Expose Server::socket_address() to return the raw server SocketAddr
  • Use only required features for dependencies
  • Accept hyper::header::HeaderValue as a match_header() value

Thanks to @​andrewtoth @​alexander-jackson

1.2.0

  • [Breaking] The minimum supported Rust version was bumped to 1.68.0
  • The server pool was limited to 20 servers for mac_os targets to prevent hitting the file descriptor limit

Thanks to @​kornelski

1.1.1

  • Ensure with_chunked_body supports streaming responses (as opposed to writing the entire buffer in one go)

Thanks to @​kornelski

1.1.0

1.0.2

1.0.1

  • Fixed an issue where futures::future::join_all would block the server pool.
  • Server::reset_async has been deprecated in favour of Server::reset since the former doesn't have an async implementation any more.

1.0.0

:balloon: 7 years and 63 releases later, it's finally time for the 1.0 :balloon:

Changes

... (truncated)

Commits


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 show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
netlify[bot] commented 2 weeks ago

Deploy Preview for oasisprotocol-oasis-sdk canceled.

Name Link
Latest commit 85b3b16e539bbb00ef721b334c7cf6a8b9c351c3
Latest deploy log https://app.netlify.com/sites/oasisprotocol-oasis-sdk/deploys/66e78fc517ee7a0009fdfeb9
dependabot[bot] commented 2 weeks ago

Looks like these dependencies are updatable in another way, so this is no longer needed.