tink-rust
tink-rust copied to clipboard
Rust port of Tink cryptography library
Bumps [http](https://github.com/hyperium/http) from 0.2.11 to 1.1.0. Release notes Sourced from http's releases. v1.1.0 What's Changed Add methods to allow trying to allocate in the HeaderMap, returning an error if oversize...
Bumps [tempfile](https://github.com/Stebalien/tempfile) from 3.4.0 to 3.10.1. Changelog Sourced from tempfile's changelog. 3.10.1 Handle potential integer overflows in 32-bit systems when seeking/truncating "spooled" temporary files past 4GiB (2³²). Handle a theoretical...
Bumps [tonic](https://github.com/hyperium/tonic) from 0.9.2 to 0.11.0. Changelog Sourced from tonic's changelog. (2024-02-08) BREAKING CHANGES: Removed NamedService from the transport module, please import it via tonic::server::NamedService. MSRV bumped to 1.70. Features...
Bumps [tonic-build](https://github.com/hyperium/tonic) from 0.8.4 to 0.11.0. Changelog Sourced from tonic-build's changelog. (2024-02-08) BREAKING CHANGES: Removed NamedService from the transport module, please import it via tonic::server::NamedService. MSRV bumped to 1.70. Features...
The lack of `Send` and `Sync` make the library almost unusable. I've had to resort to weird thread local tricks like the one below: ``` mod hello { tonic::include_proto!("hello"); }...
Bumps [yup-oauth2](https://github.com/dermesser/yup-oauth2) from 5.1.0 to 8.3.1. Commits See full diff in compare view [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) You can trigger a rebase of this PR by commenting `@dependabot rebase`. [//]: #...
Bumps [hyper-rustls](https://github.com/rustls/hyper-rustls) from 0.22.1 to 0.24.2. Release notes Sourced from hyper-rustls's releases. 0.24.1 Add TlsAcceptor API for implementing a basic rustls server (#186, thanks to @Licenser) Add Https::Connector::enforce_https() helper method...
Bumps [generic-array](https://github.com/fizyk20/generic-array) from 0.14.7 to 1.0.0. Release notes Sourced from generic-array's releases. 1.0.0 Changelog Primary PR Changelog Sourced from generic-array's changelog. 1.0.0 Use GATs for ArrayLength ! Bump MSRV to...
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.26.0 to 1.29.1. Release notes Sourced from tokio's releases. Tokio v1.29.1 Fixed rt: fix nesting two block_in_place with a block_on between (#5837) #5837: tokio-rs/tokio#5837 Tokio v1.29.0 Technically...
A non-blocking API would be great. The crate is not that ergonomic to use in a project that relies on the tokio runtime. This is due to the fact that...