Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

runtime-sdk: bump the rust group across 1 directory with 19 updates #2087

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 3, 2024

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

Package From To
thiserror 1.0.64 2.0.3
anyhow 1.0.90 1.0.93
impl-trait-for-tuples 0.2.2 0.2.3
tokio 1.40.0 1.41.1
blake3 1.5.4 1.5.5
walrus 0.20.3 0.23.1
wat 1.219.1 1.221.2
wasmprinter 0.211.1 0.221.2
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.210 1.0.215
serde_json 1.0.132 1.0.133
rustls 0.23.15 0.23.19
rustls-mbedpki-provider 0.1.0 0.2.0
webpki-root-certs 0.26.6 0.26.7
mockito 0.31.1 1.6.1

Updates thiserror from 1.0.64 to 2.0.3

Release notes

Sourced from thiserror's releases.

2.0.3

  • Support the same Path field being repeated in both Debug and Display representation in error message (#383)
  • Improve error message when a format trait used in error message is not implemented by some field (#384)

2.0.2

  • Fix hang on invalid input inside #[error(...)] attribute (#382)

2.0.1

  • Support errors that contain a dynamically sized final field (#375)
  • Improve inference of trait bounds for fields that are interpolated multiple times in an error message (#377)

2.0.0

Breaking changes

  • Referencing keyword-named fields by a raw identifier like {r#type} inside a format string is no longer accepted; simply use the unraw name like {type} (#347)

    This aligns thiserror with the standard library's formatting macros, which gained support for implicit argument capture later than the release of this feature in thiserror 1.x.

    #[derive(Error, Debug)]
    #[error("... {type} ...")]  // Before: {r#type}
    pub struct Error {
        pub r#type: Type,
    }
  • Trait bounds are no longer inferred on fields whose value is shadowed by an explicit named argument in a format message (#345)

    // Before: impl<T: Octal> Display for Error<T>
    // After: impl<T> Display for Error<T>
    #[derive(Error, Debug)]
    #[error("{thing:o}", thing = "...")]
    pub struct Error<T> {
        thing: T,
    }
  • Tuple structs and tuple variants can no longer use numerical {0} {1} access at the same time as supplying extra positional arguments for a format message, as this makes it ambiguous whether the number refers to a tuple field vs a different positional arg (#354)

    #[derive(Error, Debug)]
    #[error("ambiguous: {0} {}", $N)]
    //                  ^^^ Not allowed, use #[error("... {0} {n}", n = $N)]
    pub struct TupleError(i32);
  • Code containing invocations of thiserror's derive(Error) must now have a direct dependency on the thiserror crate regardless of the error data structure's contents (#368, #369, #370, #372)

Features

... (truncated)

Commits
  • 15fd26e Release 2.0.3
  • 7046023 Simplify how has_bonus_display is accumulated
  • 9cc1d0b Merge pull request #384 from dtolnay/nowrap
  • 1d040f3 Use Var wrapper only for Pointer formatting
  • 6a6132d Extend no-display ui test to cover another fmt trait
  • a061beb Merge pull request #383 from dtolnay/both
  • 6388293 Support Display and Debug of same path in error message
  • dc0359e Defer binding_value construction
  • 520343e Add test of Debug and Display of paths
  • 49be39d Release 2.0.2
  • Additional commits viewable in compare view

Updates anyhow from 1.0.90 to 1.0.93

Release notes

Sourced from anyhow's releases.

1.0.93

  • Update dev-dependencies to thiserror v2

1.0.92

  • Support Rust 1.82's &raw const and &raw mut syntax inside ensure! (#390)

1.0.91

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#388)
Commits
  • 713bda9 Release 1.0.93
  • f91c247 Merge pull request #391 from dtolnay/thiserror
  • 2a3901c Isolate old rustc version tests from needing anyhow dev-dependencies in lockfile
  • 3ca2cdd Update dev-dependencies to thiserror v2
  • fd03a8e Release 1.0.92
  • a16252b Merge pull request #390 from dtolnay/rawaddr
  • fcf2ef8 Compile &raw test on Rust 1.82+ only
  • 1e7e9fe Parse raw address expression syntax
  • 7d1a8f9 Add test of raw addr expression syntax
  • 6c52daa Release 1.0.91
  • Additional commits viewable in compare view

Updates impl-trait-for-tuples from 0.2.2 to 0.2.3

Release notes

Sourced from impl-trait-for-tuples's releases.

v0.2.3

What's Changed

New Contributors

Full Changelog: bkchr/impl-trait-for-tuples@v0.2.2...v0.2.3

Commits

Updates tokio from 1.40.0 to 1.41.1

Release notes

Sourced from tokio's releases.

Tokio v1.41.1

1.41.1 (Nov 7th, 2024)

Fixed

  • metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • net: display net requirement for net::UdpSocket in docs (#6938)
  • net: fix typo in TcpStream internal comment (#6944)

#6957: tokio-rs/tokio#6957 #6938: tokio-rs/tokio#6938 #6944: tokio-rs/tokio#6944

Tokio v1.41.0

1.41.0 (Oct 22th, 2024)

Added

  • metrics: stabilize global_queue_depth (#6854, #6918)
  • net: add conversions for unix SocketAddr (#6868)
  • sync: add watch::Sender::sender_count (#6836)
  • sync: add mpsc::Receiver::blocking_recv_many (#6867)
  • task: stabilize Id apis (#6793, #6891)

Added (unstable)

  • metrics: add H2 Histogram option to improve histogram granularity (#6897)
  • metrics: rename some histogram apis (#6924)
  • runtime: add LocalRuntime (#6808)

Changed

  • runtime: box futures larger than 16k on release mode (#6826)
  • sync: add #[must_use] to Notified (#6828)
  • sync: make watch cooperative (#6846)
  • sync: make broadcast::Receiver cooperative (#6870)
  • task: add task size to tracing instrumentation (#6881)
  • wasm: enable cfg_fs for wasi target (#6822)

Fixed

  • net: fix regression of abstract socket path in unix socket (#6838)

Documented

  • io: recommend OwnedFd with AsyncFd (#6821)
  • io: document cancel safety of AsyncFd methods (#6890)
  • macros: render more comprehensible documentation for join and try_join (#6814, #6841)
  • net: fix swapped examples for TcpSocket::set_nodelay and TcpSocket::nodelay (#6840)
  • sync: document runtime compatibility (#6833)

... (truncated)

Commits
  • bb7ca75 chore: prepare Tokio v1.41.1 (#6959)
  • 4a34b77 metrics: fix bug with wrong number of buckets for the histogram (#6957)
  • 8897885 docs: fix mismatched backticks in CONTRIBUTING.md (#6951)
  • 0dbdd19 ci: update cargo-check-external-types to 0.1.13 (#6949)
  • 94e55c0 net: fix typo in TcpStream internal comment (#6944)
  • 4468f27 metrics: fixed flaky worker_steal_count test (#6932)
  • 070a825 metrics: removed race condition from global_queue_depth_multi_thread test (#6...
  • 946401c net: display net requirement for net::UdpSocket in docs (#6938)
  • 0c01fd2 ci: use patched version of cargo-check-external-types to fix CI failure (#6937)
  • ebe2416 ci: use cargo deny (#6931)
  • Additional commits viewable in compare view

Updates blake3 from 1.5.4 to 1.5.5

Release notes

Sourced from blake3's releases.

1.5.5

version 1.5.5

Changes since 1.5.4:

  • b3sum --check now supports checkfiles with Windows-style newlines. b3sum still emits Unix-style newlines, even on Windows, but sometimes text editors or version control tools will swap them.
  • The "digest" feature (deleted in v1.5.2) has been added back to the blake3 crate. This is for backwards compatibility only, and it's insta-deprecated. All callers should prefer the "traits-preview" feature.
Commits
  • 81f772a version 1.5.5
  • c57d6b6 add back an explicit "digest" feature, for back compat
  • 1170f02 add support for windows newlines in b3sum --check
  • aa3e8ec build(CMake): Fix pkg-config for absolute CMAKE_INSTALL_*DIR
  • e815576 heading fix, C2SP
  • 60ff2ea link to yesterday's interview
  • 95da6b5 add xof benchmarks for non-power-of-2 lengths
  • 8e2e07e Remove Miri equality workaround function
  • 08cb01c put equivalent Hasher examples in the hash/keyed_hash/derive_key docs
  • 479eef8 test_compare_reference_impl_long_xof
  • See full diff in compare view

Updates proc-macro2 from 1.0.88 to 1.0.92

Release notes

Sourced from proc-macro2's releases.

1.0.92

  • Improve compiler/fallback mismatch panic message (#487)

1.0.91

  • Fix panic "compiler/fallback mismatch 949" when using TokenStream::from_str from inside a proc macro to parse a string containing doc comment (#484)

1.0.90

  • Improve error recovery in TokenStream's and Literal's FromStr implementations to work around rust-lang/rust#58736 such that rustc does not poison compilation on codepaths that should be recoverable errors (#477, #478, #479, #480, #481, #482)

1.0.89

  • Ensure OUT_DIR is left with deterministic contents after build script execution (#474)
Commits
  • acc7d36 Release 1.0.92
  • 0cb443d Merge pull request #487 from dtolnay/mismatchline
  • ae478ed Change mismatch panic message to avoid github linkifying
  • 5046761 Release 1.0.91
  • 27c5494 Merge pull request #486 from dtolnay/compilerlex
  • a9146d6 Ensure that compiler tokenstream parsing only produces a compiler lexerror
  • 1ce5f04 Merge pull request #485 from dtolnay/fallbackident
  • 75d0818 Make parser's fallback Ident symmetric with Group and Literal
  • 56c3e31 Merge pull request #484 from dtolnay/fbliteral
  • d2c0e61 Fix spanned fallback literal construction
  • Additional commits viewable in compare view

Updates syn from 2.0.82 to 2.0.90

Release notes

Sourced from syn's releases.

2.0.90

  • Fix automatic parenthesization of subexpressions containing outer attributes, such as (#[attr] thing).field (#1785)
  • Fix automatic parenthesization of function calls via a struct field, such as (thing.field)() and thing.0() (#1786)

2.0.89

2.0.88

  • Improve error recovery in parse_str (#1783)

2.0.87

2.0.86

  • Support peeking the end of a parse stream (#1689)
  • Allow parse_quote! to produce Vec<Attribute> (#1775)

2.0.85

  • Preserve extern static unsafety in ForeignItem::Verbatim (#1773)

2.0.84

2.0.83

  • Documentation improvements
Commits
  • ac5b41c Release 2.0.90
  • 9037abb Merge pull request #1787 from dtolnay/unparenthesizetest
  • 1a549c0 Improve test_unparenthesize to catch more false negatives
  • f9aa206 Merge pull request #1786 from dtolnay/fieldcall
  • 1445ccf Do not parenthesize unnamed tuple struct fields in call
  • 48d0101 Fix parenthesization of field expressions in function calls
  • 0e5c568 Add test of parentheses needed in call of field
  • 1cf735e Merge pull request #1785 from dtolnay/attrprecedence
  • 204c155 Lower precedence of expressions containing outer attrs
  • 401399f Add test of attr precedence inside subexpression
  • Additional commits viewable in compare view

Updates walrus from 0.20.3 to 0.23.1

Release notes

Sourced from walrus's releases.

0.23.1

What's Changed

New Contributors

Full Changelog: rustwasm/walrus@0.23.0...0.23.1

0.23.0

What's Changed

New Contributors

Full Changelog: rustwasm/walrus@0.22.0...0.23.0

0.22.0

What's Changed

Full Changelog: rustwasm/walrus@0.21.3...0.22.0

0.21.3

What's Changed

Full Changelog: rustwasm/walrus@0.21.2...0.21.3

0.21.2

What's Changed

New Contributors

Full Changelog: rustwasm/walrus@0.21.1...0.21.2

0.21.1

What's Changed

... (truncated)

Commits

Updates wat from 1.219.1 to 1.221.2

Release notes

Sourced from wat's releases.

v1.221.2

What's Changed

Full Changelog: bytecodealliance/wasm-tools@v1.221.1...v1.221.2

v1.221.1

What's Changed

Full Changelog: bytecodealliance/wasm-tools@v1.221.0...v1.221.1

v1.221.0

What's Changed

Full Changelog: bytecodealliance/wasm-tools@v1.220.0...v1.221.0

v1.220.0

What's Changed

... (truncated)

Commits

Updates wasmprinter from 0.211.1 to 0.221.2

Commits

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.210 to 1.0.215

Release notes

Sourced from serde's releases.

v1.0.215

  • Produce warning when multiple fields or variants have the same deserialization name (#2855, #2856, #2857)

v1.0.214

  • Implement IntoDeserializer for all Deserializers in serde::de::value module (#2568, thanks @​Mingun)

v1.0.213

  • Fix support for macro-generated with attributes inside a newtype struct (#2847)

v1.0.212

  • Fix hygiene of macro-generated local variable accesses in serde(with) wrappers (#2845)

v1.0.211

  • Improve error reporting about mismatched signature in with and default attributes (#2558, thanks @​Mingun)
  • Show variant aliases in error message when variant deserialization fails (#2566, thanks @​Mingun)
  • Improve binary size of untagged enum and internally tagged enum deserialization by about 12% (#2821)
Commits
  • 8939af4 Release 1.0.215
  • fa5d58c Use ui test syntax that does not interfere with rustfmt
  • 1a3cf4b Update PR 2562 ui tests
  • 7d96352 Merge pull request #2857 from dtolnay/collide
  • 111ecc5 Update ui tests for warning on colliding aliases
  • edd6fe9 Revert "Add checks for conflicts for aliases"
  • a20e924 Revert "pacify clippy"
  • b1353a9 Merge pull request #2856 from dtolnay/dename
  • c59e876 Produce a separate warning for every colliding name
  • 7f1e697 Merge pull request #2855 from dtolnay/namespan
  • Additional commits viewable in compare view

Updates serde_json from 1.0.132 to 1.0.133

Release notes

Sourced from serde_json's releases.

v1.0.133

  • Implement From<[T; N]> for serde_json::Value (#1215)
Commits
  • 0903de4 Release 1.0.133
  • 2b65ca0 Merge pull request #1215 from dtolnay/fromarray
  • 4e5f985 Implement From<[T; N]> for Value
  • 2ccb5b6 Disable question_mark clippy lint in lexical test
  • a11f5f2 Resolve unnecessary_map_or clippy lints
  • 07f280a Wrap PR 1213 to 80 columns
  • 75ed447 Merge pull request #1213 from djmitche/safety-comment
  • 73011c0 Add a safety comment to unsafe block
  • be2198a Prevent upload-artifact step from causing CI failure
  • 7cce517 Raise minimum version for preserve_order feature to Rust 1.65
  • Additional commits viewable in compare view

Updates rustls from 0.23.15 to 0.23.19

Commits
  • 4962141 Prepare 0.23.19
  • 82f5fce Prepare 0.23.18
  • 183a099 Add reproducer for bug 2227
  • d6d300d Record and restore the processed cursor in first_handshake_message
  • 970f501 rustls-bench: fix warnings with no features
  • 0fabb84 tests: linearize new test code helper
  • 976c746 fix: do not send session_ticket(35) extension for TLS 1.3
  • 9a46220 fix(deps): update rust crate asn1 to 0.20
  • 12b640e Avoid inefficient aws-lc-rs open_within()
  • 20de568 openssl-tests: use pki-types reexport
  • Additional commits viewable in compare view

Updates rustls-mbedpki-provider from 0.1.0 to 0.2.0

Commits

Updates webpki-root-certs from 0.26.6 to 0.26.7

Release notes

Sourced from webpki-root-certs's releases.

0.26.7

Upstream changes

  • Remove "Entrust Root Certification Authority - G4" ref.

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

| Package | From | To |
| --- | --- | --- |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.64` | `2.0.3` |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.90` | `1.0.93` |
| [impl-trait-for-tuples](https://github.com/bkchr/impl-trait-for-tuples) | `0.2.2` | `0.2.3` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.40.0` | `1.41.1` |
| [blake3](https://github.com/BLAKE3-team/BLAKE3) | `1.5.4` | `1.5.5` |
| [walrus](https://github.com/rustwasm/walrus) | `0.20.3` | `0.23.1` |
| [wat](https://github.com/bytecodealliance/wasm-tools) | `1.219.1` | `1.221.2` |
| [wasmprinter](https://github.com/bytecodealliance/wasm-tools) | `0.211.1` | `0.221.2` |
| [primitive-types](https://github.com/paritytech/parity-common) | `0.12.2` | `0.13.1` |
| [rlp](https://github.com/paritytech/parity-common) | `0.5.2` | `0.6.1` |
| [uint](https://github.com/paritytech/parity-common) | `0.9.5` | `0.10.0` |
| [serde](https://github.com/serde-rs/serde) | `1.0.210` | `1.0.215` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.132` | `1.0.133` |
| [rustls](https://github.com/rustls/rustls) | `0.23.15` | `0.23.19` |
| [rustls-mbedpki-provider](https://github.com/fortanix/rustls-mbedtls-provider) | `0.1.0` | `0.2.0` |
| [webpki-root-certs](https://github.com/rustls/webpki-roots) | `0.26.6` | `0.26.7` |
| [mockito](https://github.com/lipanski/mockito) | `0.31.1` | `1.6.1` |



Updates `thiserror` from 1.0.64 to 2.0.3
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.64...2.0.3)

Updates `anyhow` from 1.0.90 to 1.0.93
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.90...1.0.93)

Updates `impl-trait-for-tuples` from 0.2.2 to 0.2.3
- [Release notes](https://github.com/bkchr/impl-trait-for-tuples/releases)
- [Commits](bkchr/impl-trait-for-tuples@v0.2.2...v0.2.3)

Updates `tokio` from 1.40.0 to 1.41.1
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.40.0...tokio-1.41.1)

Updates `blake3` from 1.5.4 to 1.5.5
- [Release notes](https://github.com/BLAKE3-team/BLAKE3/releases)
- [Commits](BLAKE3-team/BLAKE3@1.5.4...1.5.5)

Updates `proc-macro2` from 1.0.88 to 1.0.92
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.88...1.0.92)

Updates `syn` from 2.0.82 to 2.0.90
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.82...2.0.90)

Updates `walrus` from 0.20.3 to 0.23.1
- [Release notes](https://github.com/rustwasm/walrus/releases)
- [Changelog](https://github.com/rustwasm/walrus/blob/main/CHANGELOG.md)
- [Commits](rustwasm/walrus@0.20.3...0.23.1)

Updates `wat` from 1.219.1 to 1.221.2
- [Release notes](https://github.com/bytecodealliance/wasm-tools/releases)
- [Commits](bytecodealliance/wasm-tools@v1.219.1...v1.221.2)

Updates `wasmprinter` from 0.211.1 to 0.221.2
- [Release notes](https://github.com/bytecodealliance/wasm-tools/releases)
- [Commits](https://github.com/bytecodealliance/wasm-tools/commits)

Updates `primitive-types` from 0.12.2 to 0.13.1
- [Commits](https://github.com/paritytech/parity-common/commits/primitive-types-v0.13.1)

Updates `rlp` from 0.5.2 to 0.6.1
- [Commits](paritytech/parity-common@rlp-v0.5.2...rlp-v0.6.1)

Updates `uint` from 0.9.5 to 0.10.0
- [Commits](paritytech/parity-common@uint-v0.9.5...uint-v0.10.0)

Updates `serde` from 1.0.210 to 1.0.215
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.210...v1.0.215)

Updates `serde_json` from 1.0.132 to 1.0.133
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.132...v1.0.133)

Updates `rustls` from 0.23.15 to 0.23.19
- [Release notes](https://github.com/rustls/rustls/releases)
- [Changelog](https://github.com/rustls/rustls/blob/main/CHANGELOG.md)
- [Commits](rustls/rustls@v/0.23.15...v/0.23.19)

Updates `rustls-mbedpki-provider` from 0.1.0 to 0.2.0
- [Commits](fortanix/rustls-mbedtls-provider@rustls-mbedpki-provider-v0.1.0...rustls-mbedpki-provider-v0.2.0)

Updates `webpki-root-certs` from 0.26.6 to 0.26.7
- [Release notes](https://github.com/rustls/webpki-roots/releases)
- [Commits](rustls/webpki-roots@v/0.26.6...v/0.26.7)

Updates `mockito` from 0.31.1 to 1.6.1
- [Release notes](https://github.com/lipanski/mockito/releases)
- [Commits](lipanski/mockito@0.31.1...1.6.1)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: impl-trait-for-tuples
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: tokio
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: blake3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: walrus
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: wat
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: wasmprinter
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: primitive-types
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: rlp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: uint
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rustls
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: rustls-mbedpki-provider
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust
- dependency-name: webpki-root-certs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust
- dependency-name: mockito
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added c:deps Category: external dependencies c:runtime-sdk Category: Runtime SDK rust labels Dec 3, 2024
Copy link

netlify bot commented Dec 3, 2024

Deploy Preview for oasisprotocol-oasis-sdk canceled.

Name Link
🔨 Latest commit e84aff2
🔍 Latest deploy log https://app.netlify.com/sites/oasisprotocol-oasis-sdk/deploys/674e5f43e30ecd000862b379

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 4, 2024

Superseded by #2093.

@dependabot dependabot bot closed this Dec 4, 2024
@dependabot dependabot bot deleted the dependabot/cargo/rust-739fdff68e branch December 4, 2024 01:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c:deps Category: external dependencies c:runtime-sdk Category: Runtime SDK rust
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants