chore(deps): update rust crate reqwest to 0.13.0 #1411

Open
renovate wants to merge 1 commit from renovate/reqwest-0.x into main
Collaborator

This PR contains the following updates:

Package Type Update Change
reqwest workspace.dependencies minor 0.12.150.13.0

Release Notes

seanmonstar/reqwest (reqwest)

v0.13.2

Compare Source

  • Fix HTTP/2 and native-tls ALPN feature combinations.
  • Fix HTTP/3 to send h3 ALPN.
  • (wasm) fix RequestBuilder::json() from override previously set content-type.

v0.13.1

Compare Source

  • Fixes compiling with rustls on Android targets.

v0.13.0

Compare Source

  • Breaking changes:
    • rustls is now the default TLS backend, instead of native-tls.
    • rustls crypto provider defaults to aws-lc instead of ring. (rustls-no-provider exists if you want a different crypto provider)
    • rustls-tls has been renamed to rustls.
    • rustls roots features removed, rustls-platform-verifier is used by default.
      • To use different roots, call tls_certs_only(your_roots).
    • native-tls now includes ALPN. To disable, use native-tls-no-alpn.
    • query and form are now crate features, disabled by default.
    • Long-deprecated methods and crate features have been removed (such as trust-dns, which was renamed hickory-dns a while ago).
  • Many TLS-related methods renamed to improve autocompletion and discovery, but previous name left in place with a "soft" deprecation. (just documented, no warnings)
    • For example, prefer tls_backend_rustls() over use_rustls_tls().

v0.12.28

  • Fix compiling on Windows if TLS and SOCKS features are not enabled.

v0.12.27

  • Add ClientBuilder::windows_named_pipe(name) option that will force all requests over that Windows Named Piper.

v0.12.26

  • Fix sending Accept-Encoding header only with values configured with reqwest, regardless of underlying tower-http config.

v0.12.25

  • Add Error::is_upgrade() to determine if the error was from an HTTP upgrade.
  • Fix sending Proxy-Authorization if only username is configured.
  • Fix sending Proxy-Authorization to HTTPS proxies when the target is HTTP.
  • Refactor internal decompression handling to use tower-http.

v0.12.24

  • Refactor cookie handling to an internal middleware.
  • Refactor internal random generator.
  • Refactor base64 encoding to reduce a copy.
  • Documentation updates.

v0.12.23

  • Add ClientBuilder::unix_socket(path) option that will force all requests over that Unix Domain Socket.
  • Add ClientBuilder::retry(policy) and reqwest::retry::Builder to configure automatic retries.
  • Add ClientBuilder::dns_resolver2() with more ergonomic argument bounds, allowing more resolver implementations.
  • Add http3_* options to blocking::ClientBuilder.
  • Fix default TCP timeout values to enabled and faster.
  • Fix SOCKS proxies to default to port 1080
  • (wasm) Add cache methods to RequestBuilder.

v0.12.22

  • Fix socks proxies when resolving IPv6 destinations.

v0.12.21

  • Fix socks proxy to use socks4a:// instead of socks4h://.
  • Fix Error::is_timeout() to check for hyper and IO timeouts too.
  • Fix request Error to again include URLs when possible.
  • Fix socks connect error to include more context.
  • (wasm) implement Default for Body.

v0.12.20

  • Add ClientBuilder::tcp_user_timeout(Duration) option to set TCP_USER_TIMEOUT.
  • Fix proxy headers only using the first matched proxy.
  • (wasm) Fix re-adding Error::is_status().

v0.12.19

  • Fix redirect that changes the method to GET should remove payload headers.
  • Fix redirect to only check the next scheme if the policy action is to follow.
  • (wasm) Fix compilation error if cookies feature is enabled (by the way, it's a noop feature in wasm).

v0.12.18

  • Fix compilation when socks enabled without TLS.

v0.12.17

  • Fix compilation on macOS.

v0.12.16

  • Add ClientBuilder::http3_congestion_bbr() to enable BBR congestion control.
  • Add ClientBuilder::http3_send_grease() to configure whether to send use QUIC grease.
  • Add ClientBuilder::http3_max_field_section_size() to configure the maximum response headers.
  • Add ClientBuilder::tcp_keepalive_interval() to configure TCP probe interval.
  • Add ClientBuilder::tcp_keepalive_retries() to configure TCP probe count.
  • Add Proxy::headers() to add extra headers that should be sent to a proxy.
  • Fix redirect::Policy::limit() which had an off-by-1 error, allowing 1 more redirect than specified.
  • Fix HTTP/3 to support streaming request bodies.
  • (wasm) Fix null bodies when calling Response::bytes_stream().

v0.12.15

  • Fix Windows to support both ProxyOverride and NO_PROXY.
  • Fix http3 to support streaming response bodies.
  • Fix http3 dependency from public API misuse.

v0.12.14

  • Fix missing fetch_mode_no_cors(), marking as deprecated when not on WASM.

v0.12.13

  • Add Form::into_reader() for blocking multipart forms.
  • Add Form::into_stream() for async multipart forms.
  • Add support for SOCKS4a proxies.
  • Fix decoding responses with multiple zstd frames.
  • Fix RequestBuilder::form() from overwriting a previously set Content-Type header, like the other builder methods.
  • Fix cloning of request timeout in blocking::Request.
  • Fix http3 synchronization of connection creation, reducing unneccesary extra connections.
  • Fix Windows system proxy to use ProxyOverride as a NO_PROXY value.
  • Fix blocking read to correctly reserve and zero read buffer.
  • (wasm) Add support for request timeouts.
  • (wasm) Fix Error::is_timeout() to return true when from a request timeout.

v0.12.12

  • (wasm) Fix compilation by not compiler tokio/time on WASM.

v0.12.11

  • Fix decompression returning an error when HTTP/2 ends with an empty data frame.

v0.12.10

  • Add ClientBuilder::connector_layer() to allow customizing the connector stack.
  • Add ClientBuilder::http2_max_header_list_size() option.
  • Fix propagating body size hint (content-length) information when wrapping bodies.
  • Fix decompression of chunked bodies so the connections can be reused more often.

v0.12.9

  • Add tls::CertificateRevocationLists support.
  • Add crate features to enable webpki roots without selecting a rustls provider.
  • Fix connection_verbose() to output read logs.
  • Fix multipart::Part::file() to automatically include content-length.
  • Fix proxy to internally no longer cache system proxy settings.

v0.12.8

  • Add support for SOCKS4 proxies.
  • Add multipart::Form::file() method for adding files easily.
  • Add Body::wrap() to wrap any http_body::Body type.
  • Fix the pool configuration to use a timer to remove expired connections.

v0.12.7

  • Revert adding impl Service<http::Request<_>> for Client.

v0.12.6

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precedence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.

v0.12.5

  • Add blocking::ClientBuilder::dns_resolver() method to change DNS resolver in blocking client.
  • Add http3 feature back, still requiring reqwest_unstable.
  • Add rustls-tls-no-provider Cargo feature to use rustls without a crypto provider.
  • Fix Accept-Encoding header combinations.
  • Fix http3 resolving IPv6 addresses.
  • Internal: upgrade to rustls 0.23.

v0.12.4

  • Add zstd support, enabled with zstd Cargo feature.
  • Add ClientBuilder::read_timeout(Duration), which applies the duration for each read operation. The timeout resets after a successful read.

v0.12.3

  • Add FromStr for dns::Name.
  • Add ClientBuilder::built_in_webpki_certs(bool) to enable them separately.
  • Add ClientBuilder::built_in_native_certs(bool) to enable them separately.
  • Fix sending content-length: 0 for GET requests.
  • Fix response body content_length() to return value when timeout is configured.
  • Fix ClientBuilder::resolve() to use lowercase domain names.

v0.12.2

  • Fix missing ALPN when connecting to socks5 proxy with rustls.
  • Fix TLS version limits with rustls.
  • Fix not detected ALPN h2 from server with native-tls.

v0.12.1

  • Fix ClientBuilder::interface() when no TLS is enabled.
  • Fix TlsInfo::peer_certificate() being truncated with rustls.
  • Fix panic if http2 feature disabled but TLS negotiated h2 in ALPN.
  • Fix Display for Error to not include its source error.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [reqwest](https://github.com/seanmonstar/reqwest) | workspace.dependencies | minor | `0.12.15` → `0.13.0` | --- ### Release Notes <details> <summary>seanmonstar/reqwest (reqwest)</summary> ### [`v0.13.2`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0132) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.13.1...v0.13.2) - Fix HTTP/2 and native-tls ALPN feature combinations. - Fix HTTP/3 to send h3 ALPN. - (wasm) fix `RequestBuilder::json()` from override previously set content-type. ### [`v0.13.1`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0131) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.13.0...v0.13.1) - Fixes compiling with rustls on Android targets. ### [`v0.13.0`](https://github.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0130) [Compare Source](https://github.com/seanmonstar/reqwest/compare/v0.12.28...v0.13.0) - **Breaking changes**: - `rustls` is now the default TLS backend, instead of `native-tls`. - `rustls` crypto provider defaults to aws-lc instead of *ring*. (`rustls-no-provider` exists if you want a different crypto provider) - `rustls-tls` has been renamed to `rustls`. - rustls roots features removed, `rustls-platform-verifier` is used by default. - To use different roots, call `tls_certs_only(your_roots)`. - `native-tls` now includes ALPN. To disable, use `native-tls-no-alpn`. - `query` and `form` are now crate features, disabled by default. - Long-deprecated methods and crate features have been removed (such as `trust-dns`, which was renamed `hickory-dns` a while ago). - Many TLS-related methods renamed to improve autocompletion and discovery, but previous name left in place with a "soft" deprecation. (just documented, no warnings) - For example, prefer `tls_backend_rustls()` over `use_rustls_tls()`. #### v0.12.28 - Fix compiling on Windows if TLS and SOCKS features are not enabled. #### v0.12.27 - Add `ClientBuilder::windows_named_pipe(name)` option that will force all requests over that Windows Named Piper. #### v0.12.26 - Fix sending `Accept-Encoding` header only with values configured with reqwest, regardless of underlying tower-http config. #### v0.12.25 - Add `Error::is_upgrade()` to determine if the error was from an HTTP upgrade. - Fix sending `Proxy-Authorization` if only username is configured. - Fix sending `Proxy-Authorization` to HTTPS proxies when the target is HTTP. - Refactor internal decompression handling to use tower-http. #### v0.12.24 - Refactor cookie handling to an internal middleware. - Refactor internal random generator. - Refactor base64 encoding to reduce a copy. - Documentation updates. #### v0.12.23 - Add `ClientBuilder::unix_socket(path)` option that will force all requests over that Unix Domain Socket. - Add `ClientBuilder::retry(policy)` and `reqwest::retry::Builder` to configure automatic retries. - Add `ClientBuilder::dns_resolver2()` with more ergonomic argument bounds, allowing more resolver implementations. - Add `http3_*` options to `blocking::ClientBuilder`. - Fix default TCP timeout values to enabled and faster. - Fix SOCKS proxies to default to port 1080 - (wasm) Add cache methods to `RequestBuilder`. #### v0.12.22 - Fix socks proxies when resolving IPv6 destinations. #### v0.12.21 - Fix socks proxy to use `socks4a://` instead of `socks4h://`. - Fix `Error::is_timeout()` to check for hyper and IO timeouts too. - Fix request `Error` to again include URLs when possible. - Fix socks connect error to include more context. - (wasm) implement `Default` for `Body`. #### v0.12.20 - Add `ClientBuilder::tcp_user_timeout(Duration)` option to set `TCP_USER_TIMEOUT`. - Fix proxy headers only using the first matched proxy. - (wasm) Fix re-adding `Error::is_status()`. #### v0.12.19 - Fix redirect that changes the method to GET should remove payload headers. - Fix redirect to only check the next scheme if the policy action is to follow. - (wasm) Fix compilation error if `cookies` feature is enabled (by the way, it's a noop feature in wasm). #### v0.12.18 - Fix compilation when `socks` enabled without TLS. #### v0.12.17 - Fix compilation on macOS. #### v0.12.16 - Add `ClientBuilder::http3_congestion_bbr()` to enable BBR congestion control. - Add `ClientBuilder::http3_send_grease()` to configure whether to send use QUIC grease. - Add `ClientBuilder::http3_max_field_section_size()` to configure the maximum response headers. - Add `ClientBuilder::tcp_keepalive_interval()` to configure TCP probe interval. - Add `ClientBuilder::tcp_keepalive_retries()` to configure TCP probe count. - Add `Proxy::headers()` to add extra headers that should be sent to a proxy. - Fix `redirect::Policy::limit()` which had an off-by-1 error, allowing 1 more redirect than specified. - Fix HTTP/3 to support streaming request bodies. - (wasm) Fix null bodies when calling `Response::bytes_stream()`. #### v0.12.15 - Fix Windows to support both `ProxyOverride` and `NO_PROXY`. - Fix http3 to support streaming response bodies. - Fix http3 dependency from public API misuse. #### v0.12.14 - Fix missing `fetch_mode_no_cors()`, marking as deprecated when not on WASM. #### v0.12.13 - Add `Form::into_reader()` for blocking `multipart` forms. - Add `Form::into_stream()` for async `multipart` forms. - Add support for SOCKS4a proxies. - Fix decoding responses with multiple zstd frames. - Fix `RequestBuilder::form()` from overwriting a previously set `Content-Type` header, like the other builder methods. - Fix cloning of request timeout in `blocking::Request`. - Fix http3 synchronization of connection creation, reducing unneccesary extra connections. - Fix Windows system proxy to use `ProxyOverride` as a `NO_PROXY` value. - Fix blocking read to correctly reserve and zero read buffer. - (wasm) Add support for request timeouts. - (wasm) Fix `Error::is_timeout()` to return true when from a request timeout. #### v0.12.12 - (wasm) Fix compilation by not compiler `tokio/time` on WASM. #### v0.12.11 - Fix decompression returning an error when HTTP/2 ends with an empty data frame. #### v0.12.10 - Add `ClientBuilder::connector_layer()` to allow customizing the connector stack. - Add `ClientBuilder::http2_max_header_list_size()` option. - Fix propagating body size hint (`content-length`) information when wrapping bodies. - Fix decompression of chunked bodies so the connections can be reused more often. #### v0.12.9 - Add `tls::CertificateRevocationLists` support. - Add crate features to enable webpki roots without selecting a rustls provider. - Fix `connection_verbose()` to output read logs. - Fix `multipart::Part::file()` to automatically include content-length. - Fix proxy to internally no longer cache system proxy settings. #### v0.12.8 - Add support for SOCKS4 proxies. - Add `multipart::Form::file()` method for adding files easily. - Add `Body::wrap()` to wrap any `http_body::Body` type. - Fix the pool configuration to use a timer to remove expired connections. #### v0.12.7 - Revert adding `impl Service<http::Request<_>>` for `Client`. #### v0.12.6 - Add support for `danger_accept_invalid_hostnames` for `rustls`. - Add `impl Service<http::Request<Body>>` for `Client` and `&'_ Client`. - Add support for `!Sync` bodies in `Body::wrap_stream()`. - Enable happy eyeballs when `hickory-dns` is used. - Fix `Proxy` so that `HTTP(S)_PROXY` values take precedence over `ALL_PROXY`. - Fix `blocking::RequestBuilder::header()` from unsetting `sensitive` on passed header values. #### v0.12.5 - Add `blocking::ClientBuilder::dns_resolver()` method to change DNS resolver in blocking client. - Add `http3` feature back, still requiring `reqwest_unstable`. - Add `rustls-tls-no-provider` Cargo feature to use rustls without a crypto provider. - Fix `Accept-Encoding` header combinations. - Fix http3 resolving IPv6 addresses. - Internal: upgrade to rustls 0.23. #### v0.12.4 - Add `zstd` support, enabled with `zstd` Cargo feature. - Add `ClientBuilder::read_timeout(Duration)`, which applies the duration for each read operation. The timeout resets after a successful read. #### v0.12.3 - Add `FromStr` for `dns::Name`. - Add `ClientBuilder::built_in_webpki_certs(bool)` to enable them separately. - Add `ClientBuilder::built_in_native_certs(bool)` to enable them separately. - Fix sending `content-length: 0` for GET requests. - Fix response body `content_length()` to return value when timeout is configured. - Fix `ClientBuilder::resolve()` to use lowercase domain names. #### v0.12.2 - Fix missing ALPN when connecting to socks5 proxy with rustls. - Fix TLS version limits with rustls. - Fix not detected ALPN h2 from server with native-tls. #### v0.12.1 - Fix `ClientBuilder::interface()` when no TLS is enabled. - Fix `TlsInfo::peer_certificate()` being truncated with rustls. - Fix panic if `http2` feature disabled but TLS negotiated h2 in ALPN. - Fix `Display` for `Error` to not include its source error. </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi43MC4yIiwidXBkYXRlZEluVmVyIjoiNDMuMTExLjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbIkRlcGVuZGVuY2llcyIsIkRlcGVuZGVuY2llcy9SZW5vdmF0ZSJdfQ==-->
chore(deps): update rust crate reqwest to 0.13.0
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m33s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m34s
Update flake hashes / update-flake-hashes (pull_request) Successful in 45s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 8m39s
00f03c19ec
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --workspace
    Updating git repository `https://forgejo.ellis.link/continuwuation/async-channel`
From https://forgejo.ellis.link/continuwuation/async-channel
 * [new branch]      master              -> origin/master
 * [new branch]      renovate/configure  -> origin/renovate/configure
 * [new ref]         HEAD                -> origin/HEAD
 * [new tag]         continuwuity-v0.5.0 -> continuwuity-v0.5.0
 * [new tag]         continuwuity-v0.5.7 -> continuwuity-v0.5.7
    Updating git repository `https://forgejo.ellis.link/continuwuation/core_affinity_rs`
From https://forgejo.ellis.link/continuwuation/core_affinity_rs
 * [new branch]      master              -> origin/master
 * [new branch]      renovate/configure  -> origin/renovate/configure
 * [new ref]         HEAD                -> origin/HEAD
 * [new tag]         continuwuity-v0.5.0 -> continuwuity-v0.5.0
 * [new tag]         continuwuity-v0.5.7 -> continuwuity-v0.5.7
    Updating git repository `https://forgejo.ellis.link/continuwuation/event-listener`
From https://forgejo.ellis.link/continuwuation/event-listener
 * [new branch]      master              -> origin/master
 * [new branch]      renovate/configure  -> origin/renovate/configure
 * [new ref]         HEAD                -> origin/HEAD
 * [new tag]         continuwuity-v0.5.0 -> continuwuity-v0.5.0
 * [new tag]         continuwuity-v0.5.7 -> continuwuity-v0.5.7
    Updating git repository `https://forgejo.ellis.link/continuwuation/hyper-util`
From https://forgejo.ellis.link/continuwuation/hyper-util
 * [new branch]      auto-builder-from   -> origin/auto-builder-from
 * [new branch]      master              -> origin/master
 * [new branch]      proxy-env           -> origin/proxy-env
 * [new branch]      proxy-tunnel        -> origin/proxy-tunnel
 * [new branch]      renovate/configure  -> origin/renovate/configure
 * [new ref]         HEAD                -> origin/HEAD
 * [new tag]         continuwuity-v0.5.7 -> continuwuity-v0.5.7
 * [new tag]         v0.1.0              -> v0.1.0
 * [new tag]         v0.1.1              -> v0.1.1
 * [new tag]         v0.1.10             -> v0.1.10
 * [new tag]         v0.1.11             -> v0.1.11
 * [new tag]         v0.1.11-cty         -> v0.1.11-cty
 * [new tag]         v0.1.17-cty         -> v0.1.17-cty
 * [new tag]         v0.1.2              -> v0.1.2
 * [new tag]         v0.1.3              -> v0.1.3
 * [new tag]         v0.1.4              -> v0.1.4
 * [new tag]         v0.1.5              -> v0.1.5
 * [new tag]         v0.1.6              -> v0.1.6
 * [new tag]         v0.1.7              -> v0.1.7
 * [new tag]         v0.1.8              -> v0.1.8
 * [new tag]         v0.1.9              -> v0.1.9
    Updating git repository `https://forgejo.ellis.link/continuwuation/rustyline-async`
From https://forgejo.ellis.link/continuwuation/rustyline-async
 * [new branch]      continuwuity-changes  -> origin/continuwuity-changes
 * [new branch]      legacy-changes        -> origin/legacy-changes
 * [new branch]      main                  -> origin/main
 * [new branch]      renovate/configure    -> origin/renovate/configure
 * [new ref]         HEAD                  -> origin/HEAD
 * [new tag]         continuwuity-v0.5.0   -> continuwuity-v0.5.0
 * [new tag]         continuwuity-v0.5.0-1 -> continuwuity-v0.5.0-1
 * [new tag]         continuwuity-v0.5.7   -> continuwuity-v0.5.7
    Updating crates.io index
    Updating git repository `https://forgejo.ellis.link/continuwuation/ruwuma`
From https://forgejo.ellis.link/continuwuation/ruwuma
 * [new branch]        conduwuit-changes           -> origin/conduwuit-changes
 * [new branch]        deprecated-user-login-field -> origin/deprecated-user-login-field
 * [new branch]        ginger/msc4222              -> origin/ginger/msc4222
 * [new branch]        jade/eq-recipts             -> origin/jade/eq-recipts
 * [new branch]        jade/hack-join-rules        -> origin/jade/hack-join-rules
 * [new branch]        main                        -> origin/main
 * [new branch]        morguldir/invalid-predecessor -> origin/morguldir/invalid-predecessor
 * [new branch]        msc4121                     -> origin/msc4121
 * [new branch]        nex/conduwuit-changes       -> origin/nex/conduwuit-changes
 * [new branch]        nex/cwy-as-callbacks        -> origin/nex/cwy-as-callbacks
 * [new branch]        nex/feat/admin-api-sketch   -> origin/nex/feat/admin-api-sketch
 * [new branch]        nex/feat/antispam           -> origin/nex/feat/antispam
 * [new branch]        nex/feat/invite-v1.16       -> origin/nex/feat/invite-v1.16
 * [new branch]        nex/feat/msc4322-media-redaction -> origin/nex/feat/msc4322-media-redaction
 * [new branch]        nex/feat/msc4373-edu-filter -> origin/nex/feat/msc4373-edu-filter
 * [new branch]        nex/feat/msc4406-sender-blocked -> origin/nex/feat/msc4406-sender-blocked
 * [new branch]        nex/feat/oidc-stuff         -> origin/nex/feat/oidc-stuff
 * [new branch]        nex/feat/policy-servers-2-electric-boogaloo -> origin/nex/feat/policy-servers-2-electric-boogaloo
 * [new branch]        nex/no-timeout-default      -> origin/nex/no-timeout-default
 * [new branch]        relations-request-direction -> origin/relations-request-direction
 * [new branch]        renovate/configure          -> origin/renovate/configure
 * [new branch]        url-preview-ts              -> origin/url-preview-ts
 * [new ref]           HEAD                        -> origin/HEAD
 * [new tag]           ruma-0.0.1                  -> ruma-0.0.1
 * [new tag]           ruma-0.0.2                  -> ruma-0.0.2
 * [new tag]           ruma-0.0.3                  -> ruma-0.0.3
 * [new tag]           ruma-0.1.0                  -> ruma-0.1.0
 * [new tag]           ruma-0.1.1                  -> ruma-0.1.1
 * [new tag]           ruma-0.1.2                  -> ruma-0.1.2
 * [new tag]           ruma-0.10.0                 -> ruma-0.10.0
 * [new tag]           ruma-0.10.1                 -> ruma-0.10.1
 * [new tag]           ruma-0.2.0                  -> ruma-0.2.0
 * [new tag]           ruma-0.3.0                  -> ruma-0.3.0
 * [new tag]           ruma-0.4.0                  -> ruma-0.4.0
 * [new tag]           ruma-0.5.0                  -> ruma-0.5.0
 * [new tag]           ruma-0.6.0                  -> ruma-0.6.0
 * [new tag]           ruma-0.6.1                  -> ruma-0.6.1
 * [new tag]           ruma-0.6.2                  -> ruma-0.6.2
 * [new tag]           ruma-0.6.3                  -> ruma-0.6.3
 * [new tag]           ruma-0.6.4                  -> ruma-0.6.4
 * [new tag]           ruma-0.7.0                  -> ruma-0.7.0
 * [new tag]           ruma-0.7.1                  -> ruma-0.7.1
 * [new tag]           ruma-0.7.2                  -> ruma-0.7.2
 * [new tag]           ruma-0.7.3                  -> ruma-0.7.3
 * [new tag]           ruma-0.7.4                  -> ruma-0.7.4
 * [new tag]           ruma-0.8.0                  -> ruma-0.8.0
 * [new tag]           ruma-0.8.1                  -> ruma-0.8.1
 * [new tag]           ruma-0.8.2                  -> ruma-0.8.2
 * [new tag]           ruma-0.9.0                  -> ruma-0.9.0
 * [new tag]           ruma-0.9.1                  -> ruma-0.9.1
 * [new tag]           ruma-0.9.2                  -> ruma-0.9.2
 * [new tag]           ruma-0.9.3                  -> ruma-0.9.3
 * [new tag]           ruma-0.9.4                  -> ruma-0.9.4
 * [new tag]           ruma-api-0.17.0             -> ruma-api-0.17.0
 * [new tag]           ruma-api-0.17.0-alpha.1     -> ruma-api-0.17.0-alpha.1
 * [new tag]           ruma-api-0.17.0-alpha.2     -> ruma-api-0.17.0-alpha.2
 * [new tag]           ruma-api-0.17.0-alpha.4     -> ruma-api-0.17.0-alpha.4
 * [new tag]           ruma-api-0.17.1             -> ruma-api-0.17.1
 * [new tag]           ruma-api-0.17.2             -> ruma-api-0.17.2
 * [new tag]           ruma-api-0.18.1             -> ruma-api-0.18.1
 * [new tag]           ruma-api-0.18.2             -> ruma-api-0.18.2
 * [new tag]           ruma-api-0.18.3             -> ruma-api-0.18.3
 * [new tag]           ruma-api-0.18.4             -> ruma-api-0.18.4
 * [new tag]           ruma-api-0.18.5             -> ruma-api-0.18.5
 * [new tag]           ruma-api-0.19.0             -> ruma-api-0.19.0
 * [new tag]           ruma-api-0.20.0             -> ruma-api-0.20.0
 * [new tag]           ruma-appservice-api-0.10.0  -> ruma-appservice-api-0.10.0
 * [new tag]           ruma-appservice-api-0.2.0   -> ruma-appservice-api-0.2.0
 * [new tag]           ruma-appservice-api-0.2.0-alpha.1 -> ruma-appservice-api-0.2.0-alpha.1
 * [new tag]           ruma-appservice-api-0.2.0-alpha.2 -> ruma-appservice-api-0.2.0-alpha.2
 * [new tag]           ruma-appservice-api-0.2.0-alpha.3 -> ruma-appservice-api-0.2.0-alpha.3
 * [new tag]           ruma-appservice-api-0.3.0   -> ruma-appservice-api-0.3.0
 * [new tag]           ruma-appservice-api-0.4.0   -> ruma-appservice-api-0.4.0
 * [new tag]           ruma-appservice-api-0.5.0   -> ruma-appservice-api-0.5.0
 * [new tag]           ruma-appservice-api-0.6.0   -> ruma-appservice-api-0.6.0
 * [new tag]           ruma-appservice-api-0.7.0   -> ruma-appservice-api-0.7.0
 * [new tag]           ruma-appservice-api-0.8.0   -> ruma-appservice-api-0.8.0
 * [new tag]           ruma-appservice-api-0.8.1   -> ruma-appservice-api-0.8.1
 * [new tag]           ruma-appservice-api-0.9.0   -> ruma-appservice-api-0.9.0
 * [new tag]           ruma-client-0.10.0          -> ruma-client-0.10.0
 * [new tag]           ruma-client-0.11.0          -> ruma-client-0.11.0
 * [new tag]           ruma-client-0.12.0          -> ruma-client-0.12.0
 * [new tag]           ruma-client-0.13.0          -> ruma-client-0.13.0
 * [new tag]           ruma-client-0.5.0           -> ruma-client-0.5.0
 * [new tag]           ruma-client-0.5.0-alpha.1   -> ruma-client-0.5.0-alpha.1
 * [new tag]           ruma-client-0.5.0-alpha.2   -> ruma-client-0.5.0-alpha.2
 * [new tag]           ruma-client-0.6.0           -> ruma-client-0.6.0
 * [new tag]           ruma-client-0.7.0           -> ruma-client-0.7.0
 * [new tag]           ruma-client-0.8.0           -> ruma-client-0.8.0
 * [new tag]           ruma-client-0.9.0           -> ruma-client-0.9.0
 * [new tag]           ruma-client-api-0.10.0      -> ruma-client-api-0.10.0
 * [new tag]           ruma-client-api-0.10.0-alpha.1 -> ruma-client-api-0.10.0-alpha.1
 * [new tag]           ruma-client-api-0.10.0-alpha.2 -> ruma-client-api-0.10.0-alpha.2
 * [new tag]           ruma-client-api-0.10.0-alpha.3 -> ruma-client-api-0.10.0-alpha.3
 * [new tag]           ruma-client-api-0.10.1      -> ruma-client-api-0.10.1
 * [new tag]           ruma-client-api-0.10.2      -> ruma-client-api-0.10.2
 * [new tag]           ruma-client-api-0.11.0      -> ruma-client-api-0.11.0
 * [new tag]           ruma-client-api-0.11.2      -> ruma-client-api-0.11.2
 * [new tag]           ruma-client-api-0.12.0      -> ruma-client-api-0.12.0
 * [new tag]           ruma-client-api-0.12.1      -> ruma-client-api-0.12.1
 * [new tag]           ruma-client-api-0.12.2      -> ruma-client-api-0.12.2
 * [new tag]           ruma-client-api-0.12.3      -> ruma-client-api-0.12.3
 * [new tag]           ruma-client-api-0.13.0      -> ruma-client-api-0.13.0
 * [new tag]           ruma-client-api-0.14.0      -> ruma-client-api-0.14.0
 * [new tag]           ruma-client-api-0.14.1      -> ruma-client-api-0.14.1
 * [new tag]           ruma-client-api-0.15.0      -> ruma-client-api-0.15.0
 * [new tag]           ruma-client-api-0.15.1      -> ruma-client-api-0.15.1
 * [new tag]           ruma-client-api-0.15.2      -> ruma-client-api-0.15.2
 * [new tag]           ruma-client-api-0.15.3      -> ruma-client-api-0.15.3
 * [new tag]           ruma-client-api-0.16.0      -> ruma-client-api-0.16.0
 * [new tag]           ruma-client-api-0.16.1      -> ruma-client-api-0.16.1
 * [new tag]           ruma-client-api-0.16.2      -> ruma-client-api-0.16.2
 * [new tag]           ruma-client-api-0.17.0      -> ruma-client-api-0.17.0
 * [new tag]           ruma-client-api-0.17.1      -> ruma-client-api-0.17.1
 * [new tag]           ruma-client-api-0.17.2      -> ruma-client-api-0.17.2
 * [new tag]           ruma-client-api-0.17.3      -> ruma-client-api-0.17.3
 * [new tag]           ruma-client-api-0.17.4      -> ruma-client-api-0.17.4
 * [new tag]           ruma-client-api-0.18.0      -> ruma-client-api-0.18.0
 * [new tag]           ruma-common-0.10.0          -> ruma-common-0.10.0
 * [new tag]           ruma-common-0.10.1          -> ruma-common-0.10.1
 * [new tag]           ruma-common-0.10.2          -> ruma-common-0.10.2
 * [new tag]           ruma-common-0.10.3          -> ruma-common-0.10.3
 * [new tag]           ruma-common-0.10.4          -> ruma-common-0.10.4
 * [new tag]           ruma-common-0.10.5          -> ruma-common-0.10.5
 * [new tag]           ruma-common-0.11.0          -> ruma-common-0.11.0
 * [new tag]           ruma-common-0.11.1          -> ruma-common-0.11.1
 * [new tag]           ruma-common-0.11.2          -> ruma-common-0.11.2
 * [new tag]           ruma-common-0.11.3          -> ruma-common-0.11.3
 * [new tag]           ruma-common-0.12.0          -> ruma-common-0.12.0
 * [new tag]           ruma-common-0.12.1          -> ruma-common-0.12.1
 * [new tag]           ruma-common-0.13.0          -> ruma-common-0.13.0
 * [new tag]           ruma-common-0.2.0           -> ruma-common-0.2.0
 * [new tag]           ruma-common-0.3.0           -> ruma-common-0.3.0
 * [new tag]           ruma-common-0.3.0-alpha.1   -> ruma-common-0.3.0-alpha.1
 * [new tag]           ruma-common-0.3.1           -> ruma-common-0.3.1
 * [new tag]           ruma-common-0.4.0           -> ruma-common-0.4.0
 * [new tag]           ruma-common-0.5.0           -> ruma-common-0.5.0
 * [new tag]           ruma-common-0.5.1           -> ruma-common-0.5.1
 * [new tag]           ruma-common-0.5.2           -> ruma-common-0.5.2
 * [new tag]           ruma-common-0.5.3           -> ruma-common-0.5.3
 * [new tag]           ruma-common-0.5.4           -> ruma-common-0.5.4
 * [new tag]           ruma-common-0.6.0           -> ruma-common-0.6.0
 * [new tag]           ruma-common-0.7.0           -> ruma-common-0.7.0
 * [new tag]           ruma-common-0.8.0           -> ruma-common-0.8.0
 * [new tag]           ruma-common-0.9.0           -> ruma-common-0.9.0
 * [new tag]           ruma-common-0.9.1           -> ruma-common-0.9.1
 * [new tag]           ruma-common-0.9.2           -> ruma-common-0.9.2
 * [new tag]           ruma-common-0.9.3           -> ruma-common-0.9.3
 * [new tag]           ruma-events-0.22.0          -> ruma-events-0.22.0
 * [new tag]           ruma-events-0.22.0-alpha.1  -> ruma-events-0.22.0-alpha.1
 * [new tag]           ruma-events-0.22.0-alpha.2  -> ruma-events-0.22.0-alpha.2
 * [new tag]           ruma-events-0.22.0-alpha.3  -> ruma-events-0.22.0-alpha.3
 * [new tag]           ruma-events-0.22.1          -> ruma-events-0.22.1
 * [new tag]           ruma-events-0.22.2          -> ruma-events-0.22.2
 * [new tag]           ruma-events-0.23.0          -> ruma-events-0.23.0
 * [new tag]           ruma-events-0.23.1          -> ruma-events-0.23.1
 * [new tag]           ruma-events-0.23.2          -> ruma-events-0.23.2
 * [new tag]           ruma-events-0.23.3          -> ruma-events-0.23.3
 * [new tag]           ruma-events-0.24.1          -> ruma-events-0.24.1
 * [new tag]           ruma-events-0.24.2          -> ruma-events-0.24.2
 * [new tag]           ruma-events-0.24.3          -> ruma-events-0.24.3
 * [new tag]           ruma-events-0.24.4          -> ruma-events-0.24.4
 * [new tag]           ruma-events-0.24.5          -> ruma-events-0.24.5
 * [new tag]           ruma-events-0.24.6          -> ruma-events-0.24.6
 * [new tag]           ruma-events-0.25.0          -> ruma-events-0.25.0
 * [new tag]           ruma-events-0.26.0          -> ruma-events-0.26.0
 * [new tag]           ruma-events-0.27.0          -> ruma-events-0.27.0
 * [new tag]           ruma-events-0.27.1          -> ruma-events-0.27.1
 * [new tag]           ruma-events-0.27.10         -> ruma-events-0.27.10
 * [new tag]           ruma-events-0.27.11         -> ruma-events-0.27.11
 * [new tag]           ruma-events-0.27.2          -> ruma-events-0.27.2
 * [new tag]           ruma-events-0.27.3          -> ruma-events-0.27.3
 * [new tag]           ruma-events-0.27.4          -> ruma-events-0.27.4
 * [new tag]           ruma-events-0.27.5          -> ruma-events-0.27.5
 * [new tag]           ruma-events-0.27.6          -> ruma-events-0.27.6
 * [new tag]           ruma-events-0.27.7          -> ruma-events-0.27.7
 * [new tag]           ruma-events-0.27.8          -> ruma-events-0.27.8
 * [new tag]           ruma-events-0.27.9          -> ruma-events-0.27.9
 * [new tag]           ruma-events-0.28.0          -> ruma-events-0.28.0
 * [new tag]           ruma-events-0.28.1          -> ruma-events-0.28.1
 * [new tag]           ruma-federation-api-0.0.3   -> ruma-federation-api-0.0.3
 * [new tag]           ruma-federation-api-0.1.0   -> ruma-federation-api-0.1.0
 * [new tag]           ruma-federation-api-0.1.0-alpha.1 -> ruma-federation-api-0.1.0-alpha.1
 * [new tag]           ruma-federation-api-0.1.0-alpha.2 -> ruma-federation-api-0.1.0-alpha.2
 * [new tag]           ruma-federation-api-0.2.0   -> ruma-federation-api-0.2.0
 * [new tag]           ruma-federation-api-0.3.0   -> ruma-federation-api-0.3.0
 * [new tag]           ruma-federation-api-0.3.1   -> ruma-federation-api-0.3.1
 * [new tag]           ruma-federation-api-0.4.0   -> ruma-federation-api-0.4.0
 * [new tag]           ruma-federation-api-0.5.0   -> ruma-federation-api-0.5.0
 * [new tag]           ruma-federation-api-0.6.0   -> ruma-federation-api-0.6.0
 * [new tag]           ruma-federation-api-0.7.0   -> ruma-federation-api-0.7.0
 * [new tag]           ruma-federation-api-0.7.1   -> ruma-federation-api-0.7.1
 * [new tag]           ruma-federation-api-0.8.0   -> ruma-federation-api-0.8.0
 * [new tag]           ruma-federation-api-0.9.0   -> ruma-federation-api-0.9.0
 * [new tag]           ruma-html-0.1.0             -> ruma-html-0.1.0
 * [new tag]           ruma-html-0.2.0             -> ruma-html-0.2.0
 * [new tag]           ruma-identifiers-0.17.0     -> ruma-identifiers-0.17.0
 * [new tag]           ruma-identifiers-0.17.2     -> ruma-identifiers-0.17.2
 * [new tag]           ruma-identifiers-0.18.0     -> ruma-identifiers-0.18.0
 * [new tag]           ruma-identifiers-0.18.0-alpha.1 -> ruma-identifiers-0.18.0-alpha.1
 * [new tag]           ruma-identifiers-0.18.1     -> ruma-identifiers-0.18.1
 * [new tag]           ruma-identifiers-0.19.0     -> ruma-identifiers-0.19.0
 * [new tag]           ruma-identifiers-0.19.1     -> ruma-identifiers-0.19.1
 * [new tag]           ruma-identifiers-0.19.2     -> ruma-identifiers-0.19.2
 * [new tag]           ruma-identifiers-0.19.3     -> ruma-identifiers-0.19.3
 * [new tag]           ruma-identifiers-0.19.4     -> ruma-identifiers-0.19.4
 * [new tag]           ruma-identifiers-0.20.0     -> ruma-identifiers-0.20.0
 * [new tag]           ruma-identifiers-0.21.0     -> ruma-identifiers-0.21.0
 * [new tag]           ruma-identifiers-0.22.0     -> ruma-identifiers-0.22.0
 * [new tag]           ruma-identity-service-api-0.0.1 -> ruma-identity-service-api-0.0.1
 * [new tag]           ruma-identity-service-api-0.1.0 -> ruma-identity-service-api-0.1.0
 * [new tag]           ruma-identity-service-api-0.1.0-alpha.1 -> ruma-identity-service-api-0.1.0-alpha.1
 * [new tag]           ruma-identity-service-api-0.2.0 -> ruma-identity-service-api-0.2.0
 * [new tag]           ruma-identity-service-api-0.3.0 -> ruma-identity-service-api-0.3.0
 * [new tag]           ruma-identity-service-api-0.4.0 -> ruma-identity-service-api-0.4.0
 * [new tag]           ruma-identity-service-api-0.5.0 -> ruma-identity-service-api-0.5.0
 * [new tag]           ruma-identity-service-api-0.6.0 -> ruma-identity-service-api-0.6.0
 * [new tag]           ruma-identity-service-api-0.7.0 -> ruma-identity-service-api-0.7.0
 * [new tag]           ruma-identity-service-api-0.7.1 -> ruma-identity-service-api-0.7.1
 * [new tag]           ruma-identity-service-api-0.8.0 -> ruma-identity-service-api-0.8.0
 * [new tag]           ruma-identity-service-api-0.9.0 -> ruma-identity-service-api-0.9.0
 * [new tag]           ruma-push-gateway-api-0.0.1 -> ruma-push-gateway-api-0.0.1
 * [new tag]           ruma-push-gateway-api-0.1.0 -> ruma-push-gateway-api-0.1.0
 * [new tag]           ruma-push-gateway-api-0.1.0-alpha.1 -> ruma-push-gateway-api-0.1.0-alpha.1
 * [new tag]           ruma-push-gateway-api-0.2.0 -> ruma-push-gateway-api-0.2.0
 * [new tag]           ruma-push-gateway-api-0.3.0 -> ruma-push-gateway-api-0.3.0
 * [new tag]           ruma-push-gateway-api-0.4.0 -> ruma-push-gateway-api-0.4.0
 * [new tag]           ruma-push-gateway-api-0.5.0 -> ruma-push-gateway-api-0.5.0
 * [new tag]           ruma-push-gateway-api-0.6.0 -> ruma-push-gateway-api-0.6.0
 * [new tag]           ruma-push-gateway-api-0.7.0 -> ruma-push-gateway-api-0.7.0
 * [new tag]           ruma-push-gateway-api-0.7.1 -> ruma-push-gateway-api-0.7.1
 * [new tag]           ruma-push-gateway-api-0.8.0 -> ruma-push-gateway-api-0.8.0
 * [new tag]           ruma-push-gateway-api-0.9.0 -> ruma-push-gateway-api-0.9.0
 * [new tag]           ruma-serde-0.2.3            -> ruma-serde-0.2.3
 * [new tag]           ruma-serde-0.3.0            -> ruma-serde-0.3.0
 * [new tag]           ruma-serde-0.3.1            -> ruma-serde-0.3.1
 * [new tag]           ruma-serde-0.4.0            -> ruma-serde-0.4.0
 * [new tag]           ruma-serde-0.4.1            -> ruma-serde-0.4.1
 * [new tag]           ruma-serde-0.4.2            -> ruma-serde-0.4.2
 * [new tag]           ruma-serde-0.5.0            -> ruma-serde-0.5.0
 * [new tag]           ruma-serde-0.6.0            -> ruma-serde-0.6.0
 * [new tag]           ruma-server-util-0.1.0      -> ruma-server-util-0.1.0
 * [new tag]           ruma-server-util-0.1.1      -> ruma-server-util-0.1.1
 * [new tag]           ruma-server-util-0.2.0      -> ruma-server-util-0.2.0
 * [new tag]           ruma-server-util-0.3.0      -> ruma-server-util-0.3.0
 * [new tag]           ruma-signatures-0.10.0      -> ruma-signatures-0.10.0
 * [new tag]           ruma-signatures-0.11.0      -> ruma-signatures-0.11.0
 * [new tag]           ruma-signatures-0.12.0      -> ruma-signatures-0.12.0
 * [new tag]           ruma-signatures-0.13.0      -> ruma-signatures-0.13.0
 * [new tag]           ruma-signatures-0.13.1      -> ruma-signatures-0.13.1
 * [new tag]           ruma-signatures-0.14.0      -> ruma-signatures-0.14.0
 * [new tag]           ruma-signatures-0.15.0      -> ruma-signatures-0.15.0
 * [new tag]           ruma-signatures-0.6.0       -> ruma-signatures-0.6.0
 * [new tag]           ruma-signatures-0.6.0-alpha.1 -> ruma-signatures-0.6.0-alpha.1
 * [new tag]           ruma-signatures-0.7.0       -> ruma-signatures-0.7.0
 * [new tag]           ruma-signatures-0.7.1       -> ruma-signatures-0.7.1
 * [new tag]           ruma-signatures-0.7.2       -> ruma-signatures-0.7.2
 * [new tag]           ruma-signatures-0.8.0       -> ruma-signatures-0.8.0
 * [new tag]           ruma-signatures-0.9.0       -> ruma-signatures-0.9.0
 * [new tag]           ruma-state-res-0.1.0        -> ruma-state-res-0.1.0
 * [new tag]           ruma-state-res-0.10.0       -> ruma-state-res-0.10.0
 * [new tag]           ruma-state-res-0.11.0       -> ruma-state-res-0.11.0
 * [new tag]           ruma-state-res-0.2.0        -> ruma-state-res-0.2.0
 * [new tag]           ruma-state-res-0.3.0        -> ruma-state-res-0.3.0
 * [new tag]           ruma-state-res-0.4.0        -> ruma-state-res-0.4.0
 * [new tag]           ruma-state-res-0.4.1        -> ruma-state-res-0.4.1
 * [new tag]           ruma-state-res-0.5.0        -> ruma-state-res-0.5.0
 * [new tag]           ruma-state-res-0.6.0        -> ruma-state-res-0.6.0
 * [new tag]           ruma-state-res-0.7.0        -> ruma-state-res-0.7.0
 * [new tag]           ruma-state-res-0.8.0        -> ruma-state-res-0.8.0
 * [new tag]           ruma-state-res-0.9.0        -> ruma-state-res-0.9.0
 * [new tag]           ruma-state-res-0.9.1        -> ruma-state-res-0.9.1
    Updating git repository `https://forgejo.ellis.link/continuwuation/jemallocator`
From https://forgejo.ellis.link/continuwuation/jemallocator
 * [new branch]      avoid-atexit            -> origin/avoid-atexit
 * [new branch]      disable-stats           -> origin/disable-stats
 * [new branch]      fixxx                   -> origin/fixxx
 * [new branch]      ga                      -> origin/ga
 * [new branch]      gh-pages                -> origin/gh-pages
 * [new branch]      git_feature             -> origin/git_feature
 * [new branch]      gnzlbg-patch-1          -> origin/gnzlbg-patch-1
 * [new branch]      main                    -> origin/main
 * [new branch]      master                  -> origin/master
 * [new branch]      min_align               -> origin/min_align
 * [new branch]      origin-jemallocator     -> origin/origin-jemallocator
 * [new branch]      pub0.3.0                -> origin/pub0.3.0
 * [new branch]      readme_version_number   -> origin/readme_version_number
 * [new branch]      renovate/configure      -> origin/renovate/configure
 * [new branch]      tikv-main               -> origin/tikv-main
 * [new branch]      tikv-master             -> origin/tikv-master
 * [new ref]         HEAD                    -> origin/HEAD
 * [new tag]         0.1.1                   -> 0.1.1
 * [new tag]         0.1.2                   -> 0.1.2
 * [new tag]         0.1.3                   -> 0.1.3
 * [new tag]         0.1.4                   -> 0.1.4
 * [new tag]         0.1.6                   -> 0.1.6
 * [new tag]         0.1.7                   -> 0.1.7
 * [new tag]         0.3.0                   -> 0.3.0
 * [new tag]         0.4.0                   -> 0.4.0
 * [new tag]         0.4.1                   -> 0.4.1
 * [new tag]         0.4.3                   -> 0.4.3
 * [new tag]         0.5.0                   -> 0.5.0
 * [new tag]         0.5.4                   -> 0.5.4
 * [new tag]         continuwuity-v0.5.0     -> continuwuity-v0.5.0
 * [new tag]         continuwuity-v0.5.7     -> continuwuity-v0.5.7
 * [new tag]         jemalloc-sys-0.1.1      -> jemalloc-sys-0.1.1
 * [new tag]         jemalloc-sys-0.1.2      -> jemalloc-sys-0.1.2
 * [new tag]         jemalloc-sys-0.1.3      -> jemalloc-sys-0.1.3
 * [new tag]         jemalloc-sys-0.1.4      -> jemalloc-sys-0.1.4
 * [new tag]         jemalloc-sys-0.1.5      -> jemalloc-sys-0.1.5
 * [new tag]         jemalloc-sys-0.1.7      -> jemalloc-sys-0.1.7
 * [new tag]         tikv-jemalloc-sys-0.4.2 -> tikv-jemalloc-sys-0.4.2
 * [new tag]         tikv-jemalloc-sys-0.5.1 -> tikv-jemalloc-sys-0.5.1
 * [new tag]         tikv-jemalloc-sys-0.5.2 -> tikv-jemalloc-sys-0.5.2
 * [new tag]         tikv-jemalloc-sys-0.5.3 -> tikv-jemalloc-sys-0.5.3
    Updating git submodule `https://github.com/tikv/jemalloc`
From https://github.com/tikv/jemalloc
 * [new ref]           09ad115bc02db60cc9d9338cf0067074d3135fb4 -> refs/commit/09ad115bc02db60cc9d9338cf0067074d3135fb4
    Updating git repository `https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1`
From https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1
 * [new branch]      folly-coroutines         -> origin/folly-coroutines
 * [new branch]      master                   -> origin/master
 * [new branch]      renovate/configure       -> origin/renovate/configure
 * [new branch]      rust-rocksdb-upstream-master -> origin/rust-rocksdb-upstream-master
 * [new branch]      snappy-1.2.1             -> origin/snappy-1.2.1
 * [new branch]      strawberry/bump-jemalloc -> origin/strawberry/bump-jemalloc
 * [new branch]      strawberry/freebsd-system-jemalloc -> origin/strawberry/freebsd-system-jemalloc
 * [new branch]      strawberry/remove-gtest  -> origin/strawberry/remove-gtest
 * [new ref]         HEAD                     -> origin/HEAD
 * [new tag]         continuwuity-v0.5.0      -> continuwuity-v0.5.0
 * [new tag]         continuwuity-v0.5.0-rc.6 -> continuwuity-v0.5.0-rc.6
 * [new tag]         continuwuity-v0.5.7      -> continuwuity-v0.5.7
 * [new tag]         v0.5.0-rc.7              -> v0.5.0-rc.7
    Updating git submodule `https://forgejo.ellis.link/continuwuation/rocksdb.git`
From https://forgejo.ellis.link/continuwuation/rocksdb
 * [new branch]          10.10.fb                 -> origin/10.10.fb
 * [new branch]          10.4.fb                  -> origin/10.4.fb
 * [new branch]          10.5.fb                  -> origin/10.5.fb
 * [new branch]          2.2.fb.branch            -> origin/2.2.fb.branch
 * [new branch]          2.3.fb.branch            -> origin/2.3.fb.branch
 * [new branch]          2.4.fb.branch            -> origin/2.4.fb.branch
 * [new branch]          2.5.fb.branch            -> origin/2.5.fb.branch
 * [new branch]          2.6.fb.branch            -> origin/2.6.fb.branch
 * [new branch]          2.7                      -> origin/2.7
 * [new branch]          2.7.fb.branch            -> origin/2.7.fb.branch
 * [new branch]          2.8.1.fb                 -> origin/2.8.1.fb
 * [new branch]          2.8.fb                   -> origin/2.8.fb
 * [new branch]          2.8.fb.trunk             -> origin/2.8.fb.trunk
 * [new branch]          3.0.fb                   -> origin/3.0.fb
 * [new branch]          3.0.fb.branch            -> origin/3.0.fb.branch
 * [new branch]          3.1.fb                   -> origin/3.1.fb
 * [new branch]          3.10.fb                  -> origin/3.10.fb
 * [new branch]          3.11.fb                  -> origin/3.11.fb
 * [new branch]          3.12.fb                  -> origin/3.12.fb
 * [new branch]          3.13.fb                  -> origin/3.13.fb
 * [new branch]          3.2.fb                   -> origin/3.2.fb
 * [new branch]          3.3.fb                   -> origin/3.3.fb
 * [new branch]          3.4.fb                   -> origin/3.4.fb
 * [new branch]          3.5.fb                   -> origin/3.5.fb
 * [new branch]          3.6.fb                   -> origin/3.6.fb
 * [new branch]          3.7.fb                   -> origin/3.7.fb
 * [new branch]          3.8.fb                   -> origin/3.8.fb
 * [new branch]          3.9.fb                   -> origin/3.9.fb
 * [new branch]          4.0.fb                   -> origin/4.0.fb
 * [new branch]          4.1.fb                   -> origin/4.1.fb
 * [new branch]          4.10.fb                  -> origin/4.10.fb
 * [new branch]          4.11.fb                  -> origin/4.11.fb
 * [new branch]          4.12.fb                  -> origin/4.12.fb
 * [new branch]          4.13.fb                  -> origin/4.13.fb
 * [new branch]          4.2.fb                   -> origin/4.2.fb
 * [new branch]          4.3.fb                   -> origin/4.3.fb
 * [new branch]          4.4.fb                   -> origin/4.4.fb
 * [new branch]          4.5.fb                   -> origin/4.5.fb
 * [new branch]          4.6.fb                   -> origin/4.6.fb
 * [new branch]          4.7.fb                   -> origin/4.7.fb
 * [new branch]          4.8.fb                   -> origin/4.8.fb
 * [new branch]          4.9.fb                   -> origin/4.9.fb
 * [new branch]          5.0.fb                   -> origin/5.0.fb
 * [new branch]          5.1.fb                   -> origin/5.1.fb
 * [new branch]          5.10.fb                  -> origin/5.10.fb
 * [new branch]          5.11.fb                  -> origin/5.11.fb
 * [new branch]          5.12.fb                  -> origin/5.12.fb
 * [new branch]          5.13.fb                  -> origin/5.13.fb
 * [new branch]          5.13.fb.myrocks          -> origin/5.13.fb.myrocks
 * [new branch]          5.14.fb                  -> origin/5.14.fb
 * [new branch]          5.14.fb.myrocks          -> origin/5.14.fb.myrocks
 * [new branch]          5.15.fb                  -> origin/5.15.fb
 * [new branch]          5.16.fb                  -> origin/5.16.fb
 * [new branch]          5.17.fb                  -> origin/5.17.fb
 * [new branch]          5.17.fb.myrocks          -> origin/5.17.fb.myrocks
 * [new branch]          5.18.fb                  -> origin/5.18.fb
 * [new branch]          5.2.fb                   -> origin/5.2.fb
 * [new branch]          5.3.fb                   -> origin/5.3.fb
 * [new branch]          5.4.fb                   -> origin/5.4.fb
 * [new branch]          5.5.fb                   -> origin/5.5.fb
 * [new branch]          5.6.fb                   -> origin/5.6.fb
 * [new branch]          5.7.fb                   -> origin/5.7.fb
 * [new branch]          5.7.fb.myrocks           -> origin/5.7.fb.myrocks
 * [new branch]          5.8.3                    -> origin/5.8.3
 * [new branch]          5.8.fb                   -> origin/5.8.fb
 * [new branch]          5.9.fb                   -> origin/5.9.fb
 * [new branch]          5.9.fb.myrocks           -> origin/5.9.fb.myrocks
 * [new branch]          6.0.fb                   -> origin/6.0.fb
 * [new branch]          6.0.fb.myrocks           -> origin/6.0.fb.myrocks
 * [new branch]          6.1.fb                   -> origin/6.1.fb
 * [new branch]          6.1.fb.myrocks           -> origin/6.1.fb.myrocks
 * [new branch]          6.1.fb.prod201905        -> origin/6.1.fb.prod201905
 * [new branch]          6.10.fb                  -> origin/6.10.fb
 * [new branch]          6.11.fb                  -> origin/6.11.fb
 * [new branch]          6.12.fb                  -> origin/6.12.fb
 * [new branch]          6.13.fb                  -> origin/6.13.fb
 * [new branch]          6.13.fb.laser            -> origin/6.13.fb.laser
 * [new branch]          6.14.fb                  -> origin/6.14.fb
 * [new branch]          6.14.fb.laser            -> origin/6.14.fb.laser
 * [new branch]          6.15.fb                  -> origin/6.15.fb
 * [new branch]          6.16.fb                  -> origin/6.16.fb
 * [new branch]          6.17.fb                  -> origin/6.17.fb
 * [new branch]          6.17.fb.laser            -> origin/6.17.fb.laser
 * [new branch]          6.18.fb                  -> origin/6.18.fb
 * [new branch]          6.19.fb                  -> origin/6.19.fb
 * [new branch]          6.2.fb                   -> origin/6.2.fb
 * [new branch]          6.20.fb                  -> origin/6.20.fb
 * [new branch]          6.21.fb                  -> origin/6.21.fb
 * [new branch]          6.22-history.md-fixup    -> origin/6.22-history.md-fixup
 * [new branch]          6.22.fb                  -> origin/6.22.fb
 * [new branch]          6.23.fb                  -> origin/6.23.fb
 * [new branch]          6.24.fb                  -> origin/6.24.fb
 * [new branch]          6.25.fb                  -> origin/6.25.fb
 * [new branch]          6.26.fb                  -> origin/6.26.fb
 * [new branch]          6.27.fb                  -> origin/6.27.fb
 * [new branch]          6.28.fb                  -> origin/6.28.fb
 * [new branch]          6.29.fb                  -> origin/6.29.fb
 * [new branch]          6.3.fb                   -> origin/6.3.fb
 * [new branch]          6.3.fb.myrocks           -> origin/6.3.fb.myrocks
 * [new branch]          6.3.fb.myrocks2          -> origin/6.3.fb.myrocks2
 * [new branch]          6.3fb                    -> origin/6.3fb
 * [new branch]          6.4.fb                   -> origin/6.4.fb
 * [new branch]          6.5.fb                   -> origin/6.5.fb
 * [new branch]          6.6.fb                   -> origin/6.6.fb
 * [new branch]          6.7.fb                   -> origin/6.7.fb
 * [new branch]          6.8.fb                   -> origin/6.8.fb
 * [new branch]          6.9.fb                   -> origin/6.9.fb
 * [new branch]          7.0.fb                   -> origin/7.0.fb
 * [new branch]          7.1.fb                   -> origin/7.1.fb
 * [new branch]          7.10.fb                  -> origin/7.10.fb
 * [new branch]          7.2.fb                   -> origin/7.2.fb
 * [new branch]          7.3.fb                   -> origin/7.3.fb
 * [new branch]          7.4.fb                   -> origin/7.4.fb
 * [new branch]          7.5.fb                   -> origin/7.5.fb
 * [new branch]          7.6.fb                   -> origin/7.6.fb
 * [new branch]          7.7.fb                   -> origin/7.7.fb
 * [new branch]          7.8.fb                   -> origin/7.8.fb
 * [new branch]          7.9.fb                   -> origin/7.9.fb
 * [new branch]          8.0.fb                   -> origin/8.0.fb
 * [new branch]          8.1.fb                   -> origin/8.1.fb
 * [new branch]          8.10.fb                  -> origin/8.10.fb
 * [new branch]          8.11.2_zippydb           -> origin/8.11.2_zippydb
 * [new branch]          8.11.fb                  -> origin/8.11.fb
 * [new branch]          8.11.fb_zippydb          -> origin/8.11.fb_zippydb
 * [new branch]          8.2.fb                   -> origin/8.2.fb
 * [new branch]          8.3.fb                   -> origin/8.3.fb
 * [new branch]          8.4.fb                   -> origin/8.4.fb
 * [new branch]          8.5.fb                   -> origin/8.5.fb
 * [new branch]          8.6.fb                   -> origin/8.6.fb
 * [new branch]          8.7.fb                   -> origin/8.7.fb
 * [new branch]          8.8.fb                   -> origin/8.8.fb
 * [new branch]          8.9.fb                   -> origin/8.9.fb
 * [new branch]          9.0.fb                   -> origin/9.0.fb
 * [new branch]          9.1.fb                   -> origin/9.1.fb
 * [new branch]          adaptive                 -> origin/adaptive
 * [new branch]          ajkr-patch-1             -> origin/ajkr-patch-1
 * [new branch]          ajkr-patch-2             -> origin/ajkr-patch-2
 * [new branch]          blob_shadow              -> origin/blob_shadow
 * [new branch]          bottom-pri-level         -> origin/bottom-pri-level
 * [new branch]          bugfix-build-detect      -> origin/bugfix-build-detect
 * [new branch]          checksum_readahead_mmap_fix -> origin/checksum_readahead_mmap_fix
 * [new branch]          draft-myrocks-and-fbcode-8.0.fb -> origin/draft-myrocks-and-fbcode-8.0.fb
 * [new branch]          feature/debug-rocksdbjavastatic -> origin/feature/debug-rocksdbjavastatic
 * [new branch]          feature/travis-arm64     -> origin/feature/travis-arm64
 * [new branch]          fix-release-notes        -> origin/fix-release-notes
 * [new branch]          fix-win2022-build        -> origin/fix-win2022-build
 * [new branch]          fix-write-batch-comment  -> origin/fix-write-batch-comment
 * [new branch]          format_compatible_4      -> origin/format_compatible_4
 * [new branch]          getmergeops              -> origin/getmergeops
 * [new branch]          gh-pages-old             -> origin/gh-pages-old
 * [new branch]          history-update           -> origin/history-update
 * [new branch]          hotfix/lambda-capture    -> origin/hotfix/lambda-capture
 * [new branch]          improve-support          -> origin/improve-support
 * [new branch]          jijiew-patch-1           -> origin/jijiew-patch-1
 * [new branch]          katherinez-patch-1       -> origin/katherinez-patch-1
 * [new branch]          katherinez-patch-2       -> origin/katherinez-patch-2
 * [new branch]          main                     -> origin/main
 * [new branch]          master                   -> origin/master
 * [new branch]          mdcallag_benchmark_oct22 -> origin/mdcallag_benchmark_oct22
 * [new branch]          nvm_cache_proto          -> origin/nvm_cache_proto
 * [new branch]          pr-sanity-check-as-GHAction -> origin/pr-sanity-check-as-GHAction
 * [new branch]          pr/11267                 -> origin/pr/11267
 * [new branch]          pr/6062                  -> origin/pr/6062
 * [new branch]          ramvadiv-patch-1         -> origin/ramvadiv-patch-1
 * [new branch]          release_fix              -> origin/release_fix
 * [new branch]          renovate/configure       -> origin/renovate/configure
 * [new branch]          revert-10606-7.6.1       -> origin/revert-10606-7.6.1
 * [new branch]          ribbon_bloom_hybrid      -> origin/ribbon_bloom_hybrid
 * [new branch]          scaffold                 -> origin/scaffold
 * [new branch]          siying-patch-1           -> origin/siying-patch-1
 * [new branch]          siying-patch-10          -> origin/siying-patch-10
 * [new branch]          siying-patch-2           -> origin/siying-patch-2
 * [new branch]          siying-patch-3           -> origin/siying-patch-3
 * [new branch]          siying-patch-4           -> origin/siying-patch-4
 * [new branch]          siying-patch-5           -> origin/siying-patch-5
 * [new branch]          siying-patch-6           -> origin/siying-patch-6
 * [new branch]          siying-patch-7           -> origin/siying-patch-7
 * [new branch]          siying-patch-8           -> origin/siying-patch-8
 * [new branch]          skip_memtable_flush      -> origin/skip_memtable_flush
 * [new branch]          tags/v9.8.4              -> origin/tags/v9.8.4
 * [new branch]          testing_ppc_build        -> origin/testing_ppc_build
 * [new branch]          tests                    -> origin/tests
 * [new branch]          unschedule_issue_test_base -> origin/unschedule_issue_test_base
 * [new branch]          unused-var               -> origin/unused-var
 * [new branch]          v6.6.4                   -> origin/v6.6.4
 * [new branch]          v9.1.1                   -> origin/v9.1.1
 * [new branch]          v9.10.0                  -> origin/v9.10.0
 * [new branch]          v9.11.1                  -> origin/v9.11.1
 * [new branch]          v9.2.1                   -> origin/v9.2.1
 * [new branch]          v9.3.1                   -> origin/v9.3.1
 * [new branch]          v9.4.0                   -> origin/v9.4.0
 * [new branch]          v9.5.2                   -> origin/v9.5.2
 * [new branch]          v9.6.1                   -> origin/v9.6.1
 * [new branch]          v9.7.2                   -> origin/v9.7.2
 * [new branch]          v9.7.3                   -> origin/v9.7.3
 * [new branch]          v9.7.4                   -> origin/v9.7.4
 * [new branch]          v9.8.4                   -> origin/v9.8.4
 * [new branch]          v9.9.3                   -> origin/v9.9.3
 * [new branch]          xxhash_merge_base        -> origin/xxhash_merge_base
 * [new branch]          yiwu_stackable           -> origin/yiwu_stackable
 * [new branch]          yuslepukhin              -> origin/yuslepukhin
 * [new ref]             HEAD                     -> origin/HEAD
 * [new tag]             1.5.7.fb                 -> 1.5.7.fb
 * [new tag]             1.5.8.1.fb               -> 1.5.8.1.fb
 * [new tag]             1.5.8.2.fb               -> 1.5.8.2.fb
 * [new tag]             1.5.8.fb                 -> 1.5.8.fb
 * [new tag]             1.5.9.1.fb               -> 1.5.9.1.fb
 * [new tag]             1.5.9.2.fb               -> 1.5.9.2.fb
 * [new tag]             1.5.9.fb                 -> 1.5.9.fb
 * [new tag]             2.0.fb                   -> 2.0.fb
 * [new tag]             2.1.fb                   -> 2.1.fb
 * [new tag]             2.2.fb                   -> 2.2.fb
 * [new tag]             2.3.fb                   -> 2.3.fb
 * [new tag]             2.4.fb                   -> 2.4.fb
 * [new tag]             2.5.fb                   -> 2.5.fb
 * [new tag]             2.6.fb                   -> 2.6.fb
 * [new tag]             2.7.fb                   -> 2.7.fb
 * [new tag]             2.8.fb                   -> 2.8.fb
 * [new tag]             3.0.fb                   -> 3.0.fb
 * [new tag]             blob_st_lvl-pre          -> blob_st_lvl-pre
 * [new tag]             continuwuity-v0.5.0      -> continuwuity-v0.5.0
 * [new tag]             continuwuity-v0.5.0-rc.6 -> continuwuity-v0.5.0-rc.6
 * [new tag]             do-not-use-me2           -> do-not-use-me2
 * [new tag]             rocksdb-3.1              -> rocksdb-3.1
 * [new tag]             rocksdb-3.10.1           -> rocksdb-3.10.1
 * [new tag]             rocksdb-3.10.2           -> rocksdb-3.10.2
 * [new tag]             rocksdb-3.11             -> rocksdb-3.11
 * [new tag]             rocksdb-3.11.1           -> rocksdb-3.11.1
 * [new tag]             rocksdb-3.11.2           -> rocksdb-3.11.2
 * [new tag]             rocksdb-3.12             -> rocksdb-3.12
 * [new tag]             rocksdb-3.12.1           -> rocksdb-3.12.1
 * [new tag]             rocksdb-3.13             -> rocksdb-3.13
 * [new tag]             rocksdb-3.13.1           -> rocksdb-3.13.1
 * [new tag]             rocksdb-3.2              -> rocksdb-3.2
 * [new tag]             rocksdb-3.3              -> rocksdb-3.3
 * [new tag]             rocksdb-3.4              -> rocksdb-3.4
 * [new tag]             rocksdb-3.5              -> rocksdb-3.5
 * [new tag]             rocksdb-3.5.1            -> rocksdb-3.5.1
 * [new tag]             rocksdb-3.6.1            -> rocksdb-3.6.1
 * [new tag]             rocksdb-3.6.2            -> rocksdb-3.6.2
 * [new tag]             rocksdb-3.7              -> rocksdb-3.7
 * [new tag]             rocksdb-3.8              -> rocksdb-3.8
 * [new tag]             rocksdb-3.9              -> rocksdb-3.9
 * [new tag]             rocksdb-3.9.1            -> rocksdb-3.9.1
 * [new tag]             rocksdb-4.1              -> rocksdb-4.1
 * [new tag]             rocksdb-4.11.2           -> rocksdb-4.11.2
 * [new tag]             rocksdb-4.13             -> rocksdb-4.13
 * [new tag]             rocksdb-4.13.5           -> rocksdb-4.13.5
 * [new tag]             rocksdb-4.2              -> rocksdb-4.2
 * [new tag]             rocksdb-4.3              -> rocksdb-4.3
 * [new tag]             rocksdb-4.3.1            -> rocksdb-4.3.1
 * [new tag]             rocksdb-4.4              -> rocksdb-4.4
 * [new tag]             rocksdb-4.4.1            -> rocksdb-4.4.1
 * [new tag]             rocksdb-4.5.1            -> rocksdb-4.5.1
 * [new tag]             rocksdb-4.6.1            -> rocksdb-4.6.1
 * [new tag]             rocksdb-4.8              -> rocksdb-4.8
 * [new tag]             rocksdb-4.9              -> rocksdb-4.9
 * [new tag]             rocksdb-5.0.1            -> rocksdb-5.0.1
 * [new tag]             rocksdb-5.0.2            -> rocksdb-5.0.2
 * [new tag]             rocksdb-5.1.2            -> rocksdb-5.1.2
 * [new tag]             rocksdb-5.1.3            -> rocksdb-5.1.3
 * [new tag]             rocksdb-5.1.4            -> rocksdb-5.1.4
 * [new tag]             rocksdb-5.10.2           -> rocksdb-5.10.2
 * [new tag]             rocksdb-5.10.3           -> rocksdb-5.10.3
 * [new tag]             rocksdb-5.10.4           -> rocksdb-5.10.4
 * [new tag]             rocksdb-5.11.2           -> rocksdb-5.11.2
 * [new tag]             rocksdb-5.11.3           -> rocksdb-5.11.3
 * [new tag]             rocksdb-5.14.3           -> rocksdb-5.14.3
 * [new tag]             rocksdb-5.2.1            -> rocksdb-5.2.1
 * [new tag]             rocksdb-5.3.3            -> rocksdb-5.3.3
 * [new tag]             rocksdb-5.3.4            -> rocksdb-5.3.4
 * [new tag]             rocksdb-5.3.5            -> rocksdb-5.3.5
 * [new tag]             rocksdb-5.3.6            -> rocksdb-5.3.6
 * [new tag]             rocksdb-5.4.10           -> rocksdb-5.4.10
 * [new tag]             rocksdb-5.4.5            -> rocksdb-5.4.5
 * [new tag]             rocksdb-5.4.6            -> rocksdb-5.4.6
 * [new tag]             rocksdb-5.4.7            -> rocksdb-5.4.7
 * [new tag]             rocksdb-5.5.2            -> rocksdb-5.5.2
 * [new tag]             rocksdb-5.5.3            -> rocksdb-5.5.3
 * [new tag]             rocksdb-5.5.4            -> rocksdb-5.5.4
 * [new tag]             rocksdb-5.5.5            -> rocksdb-5.5.5
 * [new tag]             rocksdb-5.5.6            -> rocksdb-5.5.6
 * [new tag]             rocksdb-5.6.1            -> rocksdb-5.6.1
 * [new tag]             rocksdb-5.6.2            -> rocksdb-5.6.2
 * [new tag]             rocksdb-5.7.1            -> rocksdb-5.7.1
 * [new tag]             rocksdb-5.7.2            -> rocksdb-5.7.2
 * [new tag]             rocksdb-5.7.3            -> rocksdb-5.7.3
 * [new tag]             rocksdb-5.7.5            -> rocksdb-5.7.5
 * [new tag]             rocksdb-5.8              -> rocksdb-5.8
 * [new tag]             rocksdb-5.8.6            -> rocksdb-5.8.6
 * [new tag]             rocksdb-5.8.7            -> rocksdb-5.8.7
 * [new tag]             rocksdb-5.8.8            -> rocksdb-5.8.8
 * [new tag]             rocksdb-5.9.2            -> rocksdb-5.9.2
 * [new tag]             v1.5.7                   -> v1.5.7
 * [new tag]             v1.5.8                   -> v1.5.8
 * [new tag]             v1.5.8.1                 -> v1.5.8.1
 * [new tag]             v1.5.8.2                 -> v1.5.8.2
 * [new tag]             v1.5.9.1                 -> v1.5.9.1
 * [new tag]             v2.0                     -> v2.0
 * [new tag]             v2.1                     -> v2.1
 * [new tag]             v2.2                     -> v2.2
 * [new tag]             v2.3                     -> v2.3
 * [new tag]             v2.4                     -> v2.4
 * [new tag]             v2.5                     -> v2.5
 * [new tag]             v2.6                     -> v2.6
 * [new tag]             v2.7                     -> v2.7
 * [new tag]             v2.8                     -> v2.8
 * [new tag]             v3.0                     -> v3.0
 * [new tag]             v3.1                     -> v3.1
 * [new tag]             v3.10                    -> v3.10
 * [new tag]             v3.11                    -> v3.11
 * [new tag]             v3.12                    -> v3.12
 * [new tag]             v3.12.1                  -> v3.12.1
 * [new tag]             v3.13                    -> v3.13
 * [new tag]             v3.13.1                  -> v3.13.1
 * [new tag]             v3.2                     -> v3.2
 * [new tag]             v3.3                     -> v3.3
 * [new tag]             v3.4                     -> v3.4
 * [new tag]             v3.5                     -> v3.5
 * [new tag]             v3.6.1                   -> v3.6.1
 * [new tag]             v3.7                     -> v3.7
 * [new tag]             v3.8                     -> v3.8
 * [new tag]             v3.9                     -> v3.9
 * [new tag]             v4.0                     -> v4.0
 * [new tag]             v4.1                     -> v4.1
 * [new tag]             v4.11.2                  -> v4.11.2
 * [new tag]             v4.13                    -> v4.13
 * [new tag]             v4.13.5                  -> v4.13.5
 * [new tag]             v4.2                     -> v4.2
 * [new tag]             v4.3                     -> v4.3
 * [new tag]             v4.3.1                   -> v4.3.1
 * [new tag]             v4.4                     -> v4.4
 * [new tag]             v4.4.1                   -> v4.4.1
 * [new tag]             v4.5.1                   -> v4.5.1
 * [new tag]             v4.6.1                   -> v4.6.1
 * [new tag]             v4.8                     -> v4.8
 * [new tag]             v4.9                     -> v4.9
 * [new tag]             v5.0.1                   -> v5.0.1
 * [new tag]             v5.0.2                   -> v5.0.2
 * [new tag]             v5.1.2                   -> v5.1.2
 * [new tag]             v5.1.3                   -> v5.1.3
 * [new tag]             v5.1.4                   -> v5.1.4
 * [new tag]             v5.10.2                  -> v5.10.2
 * [new tag]             v5.10.3                  -> v5.10.3
 * [new tag]             v5.10.4                  -> v5.10.4
 * [new tag]             v5.11.2                  -> v5.11.2
 * [new tag]             v5.11.3                  -> v5.11.3
 * [new tag]             v5.12.2                  -> v5.12.2
 * [new tag]             v5.12.3                  -> v5.12.3
 * [new tag]             v5.12.4                  -> v5.12.4
 * [new tag]             v5.12.5                  -> v5.12.5
 * [new tag]             v5.13.1                  -> v5.13.1
 * [new tag]             v5.13.2                  -> v5.13.2
 * [new tag]             v5.13.3                  -> v5.13.3
 * [new tag]             v5.13.4                  -> v5.13.4
 * [new tag]             v5.14.2                  -> v5.14.2
 * [new tag]             v5.14.3                  -> v5.14.3
 * [new tag]             v5.15.10                 -> v5.15.10
 * [new tag]             v5.16.6                  -> v5.16.6
 * [new tag]             v5.17.2                  -> v5.17.2
 * [new tag]             v5.18.3                  -> v5.18.3
 * [new tag]             v5.18.4                  -> v5.18.4
 * [new tag]             v5.2.1                   -> v5.2.1
 * [new tag]             v5.3.3                   -> v5.3.3
 * [new tag]             v5.3.4                   -> v5.3.4
 * [new tag]             v5.3.5                   -> v5.3.5
 * [new tag]             v5.3.6                   -> v5.3.6
 * [new tag]             v5.4.10                  -> v5.4.10
 * [new tag]             v5.4.5                   -> v5.4.5
 * [new tag]             v5.4.6                   -> v5.4.6
 * [new tag]             v5.4.7                   -> v5.4.7
 * [new tag]             v5.5.1                   -> v5.5.1
 * [new tag]             v5.5.2                   -> v5.5.2
 * [new tag]             v5.5.3                   -> v5.5.3
 * [new tag]             v5.5.4                   -> v5.5.4
 * [new tag]             v5.5.5                   -> v5.5.5
 * [new tag]             v5.5.6                   -> v5.5.6
 * [new tag]             v5.6.1                   -> v5.6.1
 * [new tag]             v5.6.2                   -> v5.6.2
 * [new tag]             v5.7.1                   -> v5.7.1
 * [new tag]             v5.7.2                   -> v5.7.2
 * [new tag]             v5.7.3                   -> v5.7.3
 * [new tag]             v5.7.5                   -> v5.7.5
 * [new tag]             v5.8                     -> v5.8
 * [new tag]             v5.8.6                   -> v5.8.6
 * [new tag]             v5.8.7                   -> v5.8.7
 * [new tag]             v5.8.8                   -> v5.8.8
 * [new tag]             v5.9.2                   -> v5.9.2
 * [new tag]             v6.0.1                   -> v6.0.1
 * [new tag]             v6.0.2                   -> v6.0.2
 * [new tag]             v6.1.1                   -> v6.1.1
 * [new tag]             v6.1.2                   -> v6.1.2
 * [new tag]             v6.10.1                  -> v6.10.1
 * [new tag]             v6.10.2                  -> v6.10.2
 * [new tag]             v6.11.4                  -> v6.11.4
 * [new tag]             v6.11.6                  -> v6.11.6
 * [new tag]             v6.12.6                  -> v6.12.6
 * [new tag]             v6.12.7                  -> v6.12.7
 * [new tag]             v6.13.2                  -> v6.13.2
 * [new tag]             v6.13.3                  -> v6.13.3
 * [new tag]             v6.14.5                  -> v6.14.5
 * [new tag]             v6.14.6                  -> v6.14.6
 * [new tag]             v6.15.2                  -> v6.15.2
 * [new tag]             v6.15.4                  -> v6.15.4
 * [new tag]             v6.15.5                  -> v6.15.5
 * [new tag]             v6.16.3                  -> v6.16.3
 * [new tag]             v6.16.4                  -> v6.16.4
 * [new tag]             v6.17.3                  -> v6.17.3
 * [new tag]             v6.19.3                  -> v6.19.3
 * [new tag]             v6.2.2                   -> v6.2.2
 * [new tag]             v6.2.4                   -> v6.2.4
 * [new tag]             v6.20.3                  -> v6.20.3
 * [new tag]             v6.22.1                  -> v6.22.1
 * [new tag]             v6.23.2                  -> v6.23.2
 * [new tag]             v6.23.3                  -> v6.23.3
 * [new tag]             v6.24.2                  -> v6.24.2
 * [new tag]             v6.25.1                  -> v6.25.1
 * [new tag]             v6.25.3                  -> v6.25.3
 * [new tag]             v6.26.0                  -> v6.26.0
 * [new tag]             v6.26.1                  -> v6.26.1
 * [new tag]             v6.27.3                  -> v6.27.3
 * [new tag]             v6.28.2                  -> v6.28.2
 * [new tag]             v6.29.3                  -> v6.29.3
 * [new tag]             v6.29.4                  -> v6.29.4
 * [new tag]             v6.29.5                  -> v6.29.5
 * [new tag]             v6.3.6                   -> v6.3.6
 * [new tag]             v6.4.6                   -> v6.4.6
 * [new tag]             v6.5.2                   -> v6.5.2
 * [new tag]             v6.5.3                   -> v6.5.3
 * [new tag]             v6.6.3                   -> v6.6.3
 * [new tag]             v6.6.4                   -> v6.6.4
 * [new tag]             v6.7.3                   -> v6.7.3
 * [new tag]             v6.8.1                   -> v6.8.1
 * [new tag]             v7.0.1                   -> v7.0.1
 * [new tag]             v7.0.2                   -> v7.0.2
 * [new tag]             v7.0.3                   -> v7.0.3
 * [new tag]             v7.0.4                   -> v7.0.4
 * [new tag]             v7.1.1                   -> v7.1.1
 * [new tag]             v7.1.2                   -> v7.1.2
 * [new tag]             v7.10.2                  -> v7.10.2
 * [new tag]             v7.2.0                   -> v7.2.0
 * [new tag]             v7.2.2                   -> v7.2.2
 * [new tag]             v7.3.1                   -> v7.3.1
 * [new tag]             v7.4.3                   -> v7.4.3
 * [new tag]             v7.4.4                   -> v7.4.4
 * [new tag]             v7.4.5                   -> v7.4.5
 * [new tag]             v7.5.3                   -> v7.5.3
 * [new tag]             v7.6.0                   -> v7.6.0
 * [new tag]             v7.7.2                   -> v7.7.2
 * [new tag]             v7.7.3                   -> v7.7.3
 * [new tag]             v7.7.8                   -> v7.7.8
 * [new tag]             v7.8.3                   -> v7.8.3
 * [new tag]             v7.9.2                   -> v7.9.2
 * [new tag]             v8.0.0                   -> v8.0.0
 * [new tag]             v8.1.1                   -> v8.1.1
 * [new tag]             v8.10.0                  -> v8.10.0
 * [new tag]             v8.10.2                  -> v8.10.2
 * [new tag]             v8.11.3                  -> v8.11.3
 * [new tag]             v8.3.2                   -> v8.3.2
 * [new tag]             v8.3.3                   -> v8.3.3
 * [new tag]             v8.4.4                   -> v8.4.4
 * [new tag]             v8.5.3                   -> v8.5.3
 * [new tag]             v8.5.4                   -> v8.5.4
 * [new tag]             v8.6.7                   -> v8.6.7
 * [new tag]             v8.7.3                   -> v8.7.3
 * [new tag]             v8.8.1                   -> v8.8.1
 * [new tag]             v8.9.1                   -> v8.9.1
 * [new tag]             v9.0.0                   -> v9.0.0
    Updating git submodule `https://github.com/google/snappy.git`
From https://github.com/google/snappy
 * [new ref]         6af9287fbdb913f0794d0148c6aa43b58e63c8e3 -> refs/commit/6af9287fbdb913f0794d0148c6aa43b58e63c8e3
    Updating git submodule `https://github.com/google/benchmark.git`
From https://github.com/google/benchmark
 * [new ref]         d572f4777349d43653b21d6c2fc63020ab326db2 -> refs/commit/d572f4777349d43653b21d6c2fc63020ab326db2
    Updating git submodule `https://github.com/google/googletest.git`
From https://github.com/google/googletest
 * [new ref]           b796f7d44681514f58a683a3a71ff17c94edb0c1 -> refs/commit/b796f7d44681514f58a683a3a71ff17c94edb0c1
error: failed to select a version for `reqwest`.
    ... required by package `conduwuit_api v0.5.7-alpha.1 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/api)`
    ... which satisfies path dependency `conduwuit-api` (locked to 0.5.7-alpha.1) of package `conduwuit v0.5.7-alpha.1 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/main)`
    ... which satisfies path dependency `conduwuit` (locked to 0.5.7-alpha.1) of package `xtask v0.5.7-alpha.1 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/xtask)`
versions that meet the requirements `^0.13.0` are: 0.13.2, 0.13.1, 0.13.0

package `conduwuit_api` depends on `reqwest` with feature `rustls-tls-native-roots` but `reqwest` does not have that feature.
 available features: __native-tls, __native-tls-alpn, __rustls, __rustls-aws-lc-rs, __tls, blocking, brotli, charset, cookies, default, default-tls, deflate, form, gzip, h2, hickory-dns, http2, http3, json, multipart, native-tls, native-tls-no-alpn, native-tls-vendored, native-tls-vendored-no-alpn, query, rustls, rustls-native-certs, rustls-no-provider, socks, stream, system-proxy, webpki-roots, zstd


failed to select a version for `reqwest` which could resolve this conflict

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: Cargo.lock ``` Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --workspace Updating git repository `https://forgejo.ellis.link/continuwuation/async-channel` From https://forgejo.ellis.link/continuwuation/async-channel * [new branch] master -> origin/master * [new branch] renovate/configure -> origin/renovate/configure * [new ref] HEAD -> origin/HEAD * [new tag] continuwuity-v0.5.0 -> continuwuity-v0.5.0 * [new tag] continuwuity-v0.5.7 -> continuwuity-v0.5.7 Updating git repository `https://forgejo.ellis.link/continuwuation/core_affinity_rs` From https://forgejo.ellis.link/continuwuation/core_affinity_rs * [new branch] master -> origin/master * [new branch] renovate/configure -> origin/renovate/configure * [new ref] HEAD -> origin/HEAD * [new tag] continuwuity-v0.5.0 -> continuwuity-v0.5.0 * [new tag] continuwuity-v0.5.7 -> continuwuity-v0.5.7 Updating git repository `https://forgejo.ellis.link/continuwuation/event-listener` From https://forgejo.ellis.link/continuwuation/event-listener * [new branch] master -> origin/master * [new branch] renovate/configure -> origin/renovate/configure * [new ref] HEAD -> origin/HEAD * [new tag] continuwuity-v0.5.0 -> continuwuity-v0.5.0 * [new tag] continuwuity-v0.5.7 -> continuwuity-v0.5.7 Updating git repository `https://forgejo.ellis.link/continuwuation/hyper-util` From https://forgejo.ellis.link/continuwuation/hyper-util * [new branch] auto-builder-from -> origin/auto-builder-from * [new branch] master -> origin/master * [new branch] proxy-env -> origin/proxy-env * [new branch] proxy-tunnel -> origin/proxy-tunnel * [new branch] renovate/configure -> origin/renovate/configure * [new ref] HEAD -> origin/HEAD * [new tag] continuwuity-v0.5.7 -> continuwuity-v0.5.7 * [new tag] v0.1.0 -> v0.1.0 * [new tag] v0.1.1 -> v0.1.1 * [new tag] v0.1.10 -> v0.1.10 * [new tag] v0.1.11 -> v0.1.11 * [new tag] v0.1.11-cty -> v0.1.11-cty * [new tag] v0.1.17-cty -> v0.1.17-cty * [new tag] v0.1.2 -> v0.1.2 * [new tag] v0.1.3 -> v0.1.3 * [new tag] v0.1.4 -> v0.1.4 * [new tag] v0.1.5 -> v0.1.5 * [new tag] v0.1.6 -> v0.1.6 * [new tag] v0.1.7 -> v0.1.7 * [new tag] v0.1.8 -> v0.1.8 * [new tag] v0.1.9 -> v0.1.9 Updating git repository `https://forgejo.ellis.link/continuwuation/rustyline-async` From https://forgejo.ellis.link/continuwuation/rustyline-async * [new branch] continuwuity-changes -> origin/continuwuity-changes * [new branch] legacy-changes -> origin/legacy-changes * [new branch] main -> origin/main * [new branch] renovate/configure -> origin/renovate/configure * [new ref] HEAD -> origin/HEAD * [new tag] continuwuity-v0.5.0 -> continuwuity-v0.5.0 * [new tag] continuwuity-v0.5.0-1 -> continuwuity-v0.5.0-1 * [new tag] continuwuity-v0.5.7 -> continuwuity-v0.5.7 Updating crates.io index Updating git repository `https://forgejo.ellis.link/continuwuation/ruwuma` From https://forgejo.ellis.link/continuwuation/ruwuma * [new branch] conduwuit-changes -> origin/conduwuit-changes * [new branch] deprecated-user-login-field -> origin/deprecated-user-login-field * [new branch] ginger/msc4222 -> origin/ginger/msc4222 * [new branch] jade/eq-recipts -> origin/jade/eq-recipts * [new branch] jade/hack-join-rules -> origin/jade/hack-join-rules * [new branch] main -> origin/main * [new branch] morguldir/invalid-predecessor -> origin/morguldir/invalid-predecessor * [new branch] msc4121 -> origin/msc4121 * [new branch] nex/conduwuit-changes -> origin/nex/conduwuit-changes * [new branch] nex/cwy-as-callbacks -> origin/nex/cwy-as-callbacks * [new branch] nex/feat/admin-api-sketch -> origin/nex/feat/admin-api-sketch * [new branch] nex/feat/antispam -> origin/nex/feat/antispam * [new branch] nex/feat/invite-v1.16 -> origin/nex/feat/invite-v1.16 * [new branch] nex/feat/msc4322-media-redaction -> origin/nex/feat/msc4322-media-redaction * [new branch] nex/feat/msc4373-edu-filter -> origin/nex/feat/msc4373-edu-filter * [new branch] nex/feat/msc4406-sender-blocked -> origin/nex/feat/msc4406-sender-blocked * [new branch] nex/feat/oidc-stuff -> origin/nex/feat/oidc-stuff * [new branch] nex/feat/policy-servers-2-electric-boogaloo -> origin/nex/feat/policy-servers-2-electric-boogaloo * [new branch] nex/no-timeout-default -> origin/nex/no-timeout-default * [new branch] relations-request-direction -> origin/relations-request-direction * [new branch] renovate/configure -> origin/renovate/configure * [new branch] url-preview-ts -> origin/url-preview-ts * [new ref] HEAD -> origin/HEAD * [new tag] ruma-0.0.1 -> ruma-0.0.1 * [new tag] ruma-0.0.2 -> ruma-0.0.2 * [new tag] ruma-0.0.3 -> ruma-0.0.3 * [new tag] ruma-0.1.0 -> ruma-0.1.0 * [new tag] ruma-0.1.1 -> ruma-0.1.1 * [new tag] ruma-0.1.2 -> ruma-0.1.2 * [new tag] ruma-0.10.0 -> ruma-0.10.0 * [new tag] ruma-0.10.1 -> ruma-0.10.1 * [new tag] ruma-0.2.0 -> ruma-0.2.0 * [new tag] ruma-0.3.0 -> ruma-0.3.0 * [new tag] ruma-0.4.0 -> ruma-0.4.0 * [new tag] ruma-0.5.0 -> ruma-0.5.0 * [new tag] ruma-0.6.0 -> ruma-0.6.0 * [new tag] ruma-0.6.1 -> ruma-0.6.1 * [new tag] ruma-0.6.2 -> ruma-0.6.2 * [new tag] ruma-0.6.3 -> ruma-0.6.3 * [new tag] ruma-0.6.4 -> ruma-0.6.4 * [new tag] ruma-0.7.0 -> ruma-0.7.0 * [new tag] ruma-0.7.1 -> ruma-0.7.1 * [new tag] ruma-0.7.2 -> ruma-0.7.2 * [new tag] ruma-0.7.3 -> ruma-0.7.3 * [new tag] ruma-0.7.4 -> ruma-0.7.4 * [new tag] ruma-0.8.0 -> ruma-0.8.0 * [new tag] ruma-0.8.1 -> ruma-0.8.1 * [new tag] ruma-0.8.2 -> ruma-0.8.2 * [new tag] ruma-0.9.0 -> ruma-0.9.0 * [new tag] ruma-0.9.1 -> ruma-0.9.1 * [new tag] ruma-0.9.2 -> ruma-0.9.2 * [new tag] ruma-0.9.3 -> ruma-0.9.3 * [new tag] ruma-0.9.4 -> ruma-0.9.4 * [new tag] ruma-api-0.17.0 -> ruma-api-0.17.0 * [new tag] ruma-api-0.17.0-alpha.1 -> ruma-api-0.17.0-alpha.1 * [new tag] ruma-api-0.17.0-alpha.2 -> ruma-api-0.17.0-alpha.2 * [new tag] ruma-api-0.17.0-alpha.4 -> ruma-api-0.17.0-alpha.4 * [new tag] ruma-api-0.17.1 -> ruma-api-0.17.1 * [new tag] ruma-api-0.17.2 -> ruma-api-0.17.2 * [new tag] ruma-api-0.18.1 -> ruma-api-0.18.1 * [new tag] ruma-api-0.18.2 -> ruma-api-0.18.2 * [new tag] ruma-api-0.18.3 -> ruma-api-0.18.3 * [new tag] ruma-api-0.18.4 -> ruma-api-0.18.4 * [new tag] ruma-api-0.18.5 -> ruma-api-0.18.5 * [new tag] ruma-api-0.19.0 -> ruma-api-0.19.0 * [new tag] ruma-api-0.20.0 -> ruma-api-0.20.0 * [new tag] ruma-appservice-api-0.10.0 -> ruma-appservice-api-0.10.0 * [new tag] ruma-appservice-api-0.2.0 -> ruma-appservice-api-0.2.0 * [new tag] ruma-appservice-api-0.2.0-alpha.1 -> ruma-appservice-api-0.2.0-alpha.1 * [new tag] ruma-appservice-api-0.2.0-alpha.2 -> ruma-appservice-api-0.2.0-alpha.2 * [new tag] ruma-appservice-api-0.2.0-alpha.3 -> ruma-appservice-api-0.2.0-alpha.3 * [new tag] ruma-appservice-api-0.3.0 -> ruma-appservice-api-0.3.0 * [new tag] ruma-appservice-api-0.4.0 -> ruma-appservice-api-0.4.0 * [new tag] ruma-appservice-api-0.5.0 -> ruma-appservice-api-0.5.0 * [new tag] ruma-appservice-api-0.6.0 -> ruma-appservice-api-0.6.0 * [new tag] ruma-appservice-api-0.7.0 -> ruma-appservice-api-0.7.0 * [new tag] ruma-appservice-api-0.8.0 -> ruma-appservice-api-0.8.0 * [new tag] ruma-appservice-api-0.8.1 -> ruma-appservice-api-0.8.1 * [new tag] ruma-appservice-api-0.9.0 -> ruma-appservice-api-0.9.0 * [new tag] ruma-client-0.10.0 -> ruma-client-0.10.0 * [new tag] ruma-client-0.11.0 -> ruma-client-0.11.0 * [new tag] ruma-client-0.12.0 -> ruma-client-0.12.0 * [new tag] ruma-client-0.13.0 -> ruma-client-0.13.0 * [new tag] ruma-client-0.5.0 -> ruma-client-0.5.0 * [new tag] ruma-client-0.5.0-alpha.1 -> ruma-client-0.5.0-alpha.1 * [new tag] ruma-client-0.5.0-alpha.2 -> ruma-client-0.5.0-alpha.2 * [new tag] ruma-client-0.6.0 -> ruma-client-0.6.0 * [new tag] ruma-client-0.7.0 -> ruma-client-0.7.0 * [new tag] ruma-client-0.8.0 -> ruma-client-0.8.0 * [new tag] ruma-client-0.9.0 -> ruma-client-0.9.0 * [new tag] ruma-client-api-0.10.0 -> ruma-client-api-0.10.0 * [new tag] ruma-client-api-0.10.0-alpha.1 -> ruma-client-api-0.10.0-alpha.1 * [new tag] ruma-client-api-0.10.0-alpha.2 -> ruma-client-api-0.10.0-alpha.2 * [new tag] ruma-client-api-0.10.0-alpha.3 -> ruma-client-api-0.10.0-alpha.3 * [new tag] ruma-client-api-0.10.1 -> ruma-client-api-0.10.1 * [new tag] ruma-client-api-0.10.2 -> ruma-client-api-0.10.2 * [new tag] ruma-client-api-0.11.0 -> ruma-client-api-0.11.0 * [new tag] ruma-client-api-0.11.2 -> ruma-client-api-0.11.2 * [new tag] ruma-client-api-0.12.0 -> ruma-client-api-0.12.0 * [new tag] ruma-client-api-0.12.1 -> ruma-client-api-0.12.1 * [new tag] ruma-client-api-0.12.2 -> ruma-client-api-0.12.2 * [new tag] ruma-client-api-0.12.3 -> ruma-client-api-0.12.3 * [new tag] ruma-client-api-0.13.0 -> ruma-client-api-0.13.0 * [new tag] ruma-client-api-0.14.0 -> ruma-client-api-0.14.0 * [new tag] ruma-client-api-0.14.1 -> ruma-client-api-0.14.1 * [new tag] ruma-client-api-0.15.0 -> ruma-client-api-0.15.0 * [new tag] ruma-client-api-0.15.1 -> ruma-client-api-0.15.1 * [new tag] ruma-client-api-0.15.2 -> ruma-client-api-0.15.2 * [new tag] ruma-client-api-0.15.3 -> ruma-client-api-0.15.3 * [new tag] ruma-client-api-0.16.0 -> ruma-client-api-0.16.0 * [new tag] ruma-client-api-0.16.1 -> ruma-client-api-0.16.1 * [new tag] ruma-client-api-0.16.2 -> ruma-client-api-0.16.2 * [new tag] ruma-client-api-0.17.0 -> ruma-client-api-0.17.0 * [new tag] ruma-client-api-0.17.1 -> ruma-client-api-0.17.1 * [new tag] ruma-client-api-0.17.2 -> ruma-client-api-0.17.2 * [new tag] ruma-client-api-0.17.3 -> ruma-client-api-0.17.3 * [new tag] ruma-client-api-0.17.4 -> ruma-client-api-0.17.4 * [new tag] ruma-client-api-0.18.0 -> ruma-client-api-0.18.0 * [new tag] ruma-common-0.10.0 -> ruma-common-0.10.0 * [new tag] ruma-common-0.10.1 -> ruma-common-0.10.1 * [new tag] ruma-common-0.10.2 -> ruma-common-0.10.2 * [new tag] ruma-common-0.10.3 -> ruma-common-0.10.3 * [new tag] ruma-common-0.10.4 -> ruma-common-0.10.4 * [new tag] ruma-common-0.10.5 -> ruma-common-0.10.5 * [new tag] ruma-common-0.11.0 -> ruma-common-0.11.0 * [new tag] ruma-common-0.11.1 -> ruma-common-0.11.1 * [new tag] ruma-common-0.11.2 -> ruma-common-0.11.2 * [new tag] ruma-common-0.11.3 -> ruma-common-0.11.3 * [new tag] ruma-common-0.12.0 -> ruma-common-0.12.0 * [new tag] ruma-common-0.12.1 -> ruma-common-0.12.1 * [new tag] ruma-common-0.13.0 -> ruma-common-0.13.0 * [new tag] ruma-common-0.2.0 -> ruma-common-0.2.0 * [new tag] ruma-common-0.3.0 -> ruma-common-0.3.0 * [new tag] ruma-common-0.3.0-alpha.1 -> ruma-common-0.3.0-alpha.1 * [new tag] ruma-common-0.3.1 -> ruma-common-0.3.1 * [new tag] ruma-common-0.4.0 -> ruma-common-0.4.0 * [new tag] ruma-common-0.5.0 -> ruma-common-0.5.0 * [new tag] ruma-common-0.5.1 -> ruma-common-0.5.1 * [new tag] ruma-common-0.5.2 -> ruma-common-0.5.2 * [new tag] ruma-common-0.5.3 -> ruma-common-0.5.3 * [new tag] ruma-common-0.5.4 -> ruma-common-0.5.4 * [new tag] ruma-common-0.6.0 -> ruma-common-0.6.0 * [new tag] ruma-common-0.7.0 -> ruma-common-0.7.0 * [new tag] ruma-common-0.8.0 -> ruma-common-0.8.0 * [new tag] ruma-common-0.9.0 -> ruma-common-0.9.0 * [new tag] ruma-common-0.9.1 -> ruma-common-0.9.1 * [new tag] ruma-common-0.9.2 -> ruma-common-0.9.2 * [new tag] ruma-common-0.9.3 -> ruma-common-0.9.3 * [new tag] ruma-events-0.22.0 -> ruma-events-0.22.0 * [new tag] ruma-events-0.22.0-alpha.1 -> ruma-events-0.22.0-alpha.1 * [new tag] ruma-events-0.22.0-alpha.2 -> ruma-events-0.22.0-alpha.2 * [new tag] ruma-events-0.22.0-alpha.3 -> ruma-events-0.22.0-alpha.3 * [new tag] ruma-events-0.22.1 -> ruma-events-0.22.1 * [new tag] ruma-events-0.22.2 -> ruma-events-0.22.2 * [new tag] ruma-events-0.23.0 -> ruma-events-0.23.0 * [new tag] ruma-events-0.23.1 -> ruma-events-0.23.1 * [new tag] ruma-events-0.23.2 -> ruma-events-0.23.2 * [new tag] ruma-events-0.23.3 -> ruma-events-0.23.3 * [new tag] ruma-events-0.24.1 -> ruma-events-0.24.1 * [new tag] ruma-events-0.24.2 -> ruma-events-0.24.2 * [new tag] ruma-events-0.24.3 -> ruma-events-0.24.3 * [new tag] ruma-events-0.24.4 -> ruma-events-0.24.4 * [new tag] ruma-events-0.24.5 -> ruma-events-0.24.5 * [new tag] ruma-events-0.24.6 -> ruma-events-0.24.6 * [new tag] ruma-events-0.25.0 -> ruma-events-0.25.0 * [new tag] ruma-events-0.26.0 -> ruma-events-0.26.0 * [new tag] ruma-events-0.27.0 -> ruma-events-0.27.0 * [new tag] ruma-events-0.27.1 -> ruma-events-0.27.1 * [new tag] ruma-events-0.27.10 -> ruma-events-0.27.10 * [new tag] ruma-events-0.27.11 -> ruma-events-0.27.11 * [new tag] ruma-events-0.27.2 -> ruma-events-0.27.2 * [new tag] ruma-events-0.27.3 -> ruma-events-0.27.3 * [new tag] ruma-events-0.27.4 -> ruma-events-0.27.4 * [new tag] ruma-events-0.27.5 -> ruma-events-0.27.5 * [new tag] ruma-events-0.27.6 -> ruma-events-0.27.6 * [new tag] ruma-events-0.27.7 -> ruma-events-0.27.7 * [new tag] ruma-events-0.27.8 -> ruma-events-0.27.8 * [new tag] ruma-events-0.27.9 -> ruma-events-0.27.9 * [new tag] ruma-events-0.28.0 -> ruma-events-0.28.0 * [new tag] ruma-events-0.28.1 -> ruma-events-0.28.1 * [new tag] ruma-federation-api-0.0.3 -> ruma-federation-api-0.0.3 * [new tag] ruma-federation-api-0.1.0 -> ruma-federation-api-0.1.0 * [new tag] ruma-federation-api-0.1.0-alpha.1 -> ruma-federation-api-0.1.0-alpha.1 * [new tag] ruma-federation-api-0.1.0-alpha.2 -> ruma-federation-api-0.1.0-alpha.2 * [new tag] ruma-federation-api-0.2.0 -> ruma-federation-api-0.2.0 * [new tag] ruma-federation-api-0.3.0 -> ruma-federation-api-0.3.0 * [new tag] ruma-federation-api-0.3.1 -> ruma-federation-api-0.3.1 * [new tag] ruma-federation-api-0.4.0 -> ruma-federation-api-0.4.0 * [new tag] ruma-federation-api-0.5.0 -> ruma-federation-api-0.5.0 * [new tag] ruma-federation-api-0.6.0 -> ruma-federation-api-0.6.0 * [new tag] ruma-federation-api-0.7.0 -> ruma-federation-api-0.7.0 * [new tag] ruma-federation-api-0.7.1 -> ruma-federation-api-0.7.1 * [new tag] ruma-federation-api-0.8.0 -> ruma-federation-api-0.8.0 * [new tag] ruma-federation-api-0.9.0 -> ruma-federation-api-0.9.0 * [new tag] ruma-html-0.1.0 -> ruma-html-0.1.0 * [new tag] ruma-html-0.2.0 -> ruma-html-0.2.0 * [new tag] ruma-identifiers-0.17.0 -> ruma-identifiers-0.17.0 * [new tag] ruma-identifiers-0.17.2 -> ruma-identifiers-0.17.2 * [new tag] ruma-identifiers-0.18.0 -> ruma-identifiers-0.18.0 * [new tag] ruma-identifiers-0.18.0-alpha.1 -> ruma-identifiers-0.18.0-alpha.1 * [new tag] ruma-identifiers-0.18.1 -> ruma-identifiers-0.18.1 * [new tag] ruma-identifiers-0.19.0 -> ruma-identifiers-0.19.0 * [new tag] ruma-identifiers-0.19.1 -> ruma-identifiers-0.19.1 * [new tag] ruma-identifiers-0.19.2 -> ruma-identifiers-0.19.2 * [new tag] ruma-identifiers-0.19.3 -> ruma-identifiers-0.19.3 * [new tag] ruma-identifiers-0.19.4 -> ruma-identifiers-0.19.4 * [new tag] ruma-identifiers-0.20.0 -> ruma-identifiers-0.20.0 * [new tag] ruma-identifiers-0.21.0 -> ruma-identifiers-0.21.0 * [new tag] ruma-identifiers-0.22.0 -> ruma-identifiers-0.22.0 * [new tag] ruma-identity-service-api-0.0.1 -> ruma-identity-service-api-0.0.1 * [new tag] ruma-identity-service-api-0.1.0 -> ruma-identity-service-api-0.1.0 * [new tag] ruma-identity-service-api-0.1.0-alpha.1 -> ruma-identity-service-api-0.1.0-alpha.1 * [new tag] ruma-identity-service-api-0.2.0 -> ruma-identity-service-api-0.2.0 * [new tag] ruma-identity-service-api-0.3.0 -> ruma-identity-service-api-0.3.0 * [new tag] ruma-identity-service-api-0.4.0 -> ruma-identity-service-api-0.4.0 * [new tag] ruma-identity-service-api-0.5.0 -> ruma-identity-service-api-0.5.0 * [new tag] ruma-identity-service-api-0.6.0 -> ruma-identity-service-api-0.6.0 * [new tag] ruma-identity-service-api-0.7.0 -> ruma-identity-service-api-0.7.0 * [new tag] ruma-identity-service-api-0.7.1 -> ruma-identity-service-api-0.7.1 * [new tag] ruma-identity-service-api-0.8.0 -> ruma-identity-service-api-0.8.0 * [new tag] ruma-identity-service-api-0.9.0 -> ruma-identity-service-api-0.9.0 * [new tag] ruma-push-gateway-api-0.0.1 -> ruma-push-gateway-api-0.0.1 * [new tag] ruma-push-gateway-api-0.1.0 -> ruma-push-gateway-api-0.1.0 * [new tag] ruma-push-gateway-api-0.1.0-alpha.1 -> ruma-push-gateway-api-0.1.0-alpha.1 * [new tag] ruma-push-gateway-api-0.2.0 -> ruma-push-gateway-api-0.2.0 * [new tag] ruma-push-gateway-api-0.3.0 -> ruma-push-gateway-api-0.3.0 * [new tag] ruma-push-gateway-api-0.4.0 -> ruma-push-gateway-api-0.4.0 * [new tag] ruma-push-gateway-api-0.5.0 -> ruma-push-gateway-api-0.5.0 * [new tag] ruma-push-gateway-api-0.6.0 -> ruma-push-gateway-api-0.6.0 * [new tag] ruma-push-gateway-api-0.7.0 -> ruma-push-gateway-api-0.7.0 * [new tag] ruma-push-gateway-api-0.7.1 -> ruma-push-gateway-api-0.7.1 * [new tag] ruma-push-gateway-api-0.8.0 -> ruma-push-gateway-api-0.8.0 * [new tag] ruma-push-gateway-api-0.9.0 -> ruma-push-gateway-api-0.9.0 * [new tag] ruma-serde-0.2.3 -> ruma-serde-0.2.3 * [new tag] ruma-serde-0.3.0 -> ruma-serde-0.3.0 * [new tag] ruma-serde-0.3.1 -> ruma-serde-0.3.1 * [new tag] ruma-serde-0.4.0 -> ruma-serde-0.4.0 * [new tag] ruma-serde-0.4.1 -> ruma-serde-0.4.1 * [new tag] ruma-serde-0.4.2 -> ruma-serde-0.4.2 * [new tag] ruma-serde-0.5.0 -> ruma-serde-0.5.0 * [new tag] ruma-serde-0.6.0 -> ruma-serde-0.6.0 * [new tag] ruma-server-util-0.1.0 -> ruma-server-util-0.1.0 * [new tag] ruma-server-util-0.1.1 -> ruma-server-util-0.1.1 * [new tag] ruma-server-util-0.2.0 -> ruma-server-util-0.2.0 * [new tag] ruma-server-util-0.3.0 -> ruma-server-util-0.3.0 * [new tag] ruma-signatures-0.10.0 -> ruma-signatures-0.10.0 * [new tag] ruma-signatures-0.11.0 -> ruma-signatures-0.11.0 * [new tag] ruma-signatures-0.12.0 -> ruma-signatures-0.12.0 * [new tag] ruma-signatures-0.13.0 -> ruma-signatures-0.13.0 * [new tag] ruma-signatures-0.13.1 -> ruma-signatures-0.13.1 * [new tag] ruma-signatures-0.14.0 -> ruma-signatures-0.14.0 * [new tag] ruma-signatures-0.15.0 -> ruma-signatures-0.15.0 * [new tag] ruma-signatures-0.6.0 -> ruma-signatures-0.6.0 * [new tag] ruma-signatures-0.6.0-alpha.1 -> ruma-signatures-0.6.0-alpha.1 * [new tag] ruma-signatures-0.7.0 -> ruma-signatures-0.7.0 * [new tag] ruma-signatures-0.7.1 -> ruma-signatures-0.7.1 * [new tag] ruma-signatures-0.7.2 -> ruma-signatures-0.7.2 * [new tag] ruma-signatures-0.8.0 -> ruma-signatures-0.8.0 * [new tag] ruma-signatures-0.9.0 -> ruma-signatures-0.9.0 * [new tag] ruma-state-res-0.1.0 -> ruma-state-res-0.1.0 * [new tag] ruma-state-res-0.10.0 -> ruma-state-res-0.10.0 * [new tag] ruma-state-res-0.11.0 -> ruma-state-res-0.11.0 * [new tag] ruma-state-res-0.2.0 -> ruma-state-res-0.2.0 * [new tag] ruma-state-res-0.3.0 -> ruma-state-res-0.3.0 * [new tag] ruma-state-res-0.4.0 -> ruma-state-res-0.4.0 * [new tag] ruma-state-res-0.4.1 -> ruma-state-res-0.4.1 * [new tag] ruma-state-res-0.5.0 -> ruma-state-res-0.5.0 * [new tag] ruma-state-res-0.6.0 -> ruma-state-res-0.6.0 * [new tag] ruma-state-res-0.7.0 -> ruma-state-res-0.7.0 * [new tag] ruma-state-res-0.8.0 -> ruma-state-res-0.8.0 * [new tag] ruma-state-res-0.9.0 -> ruma-state-res-0.9.0 * [new tag] ruma-state-res-0.9.1 -> ruma-state-res-0.9.1 Updating git repository `https://forgejo.ellis.link/continuwuation/jemallocator` From https://forgejo.ellis.link/continuwuation/jemallocator * [new branch] avoid-atexit -> origin/avoid-atexit * [new branch] disable-stats -> origin/disable-stats * [new branch] fixxx -> origin/fixxx * [new branch] ga -> origin/ga * [new branch] gh-pages -> origin/gh-pages * [new branch] git_feature -> origin/git_feature * [new branch] gnzlbg-patch-1 -> origin/gnzlbg-patch-1 * [new branch] main -> origin/main * [new branch] master -> origin/master * [new branch] min_align -> origin/min_align * [new branch] origin-jemallocator -> origin/origin-jemallocator * [new branch] pub0.3.0 -> origin/pub0.3.0 * [new branch] readme_version_number -> origin/readme_version_number * [new branch] renovate/configure -> origin/renovate/configure * [new branch] tikv-main -> origin/tikv-main * [new branch] tikv-master -> origin/tikv-master * [new ref] HEAD -> origin/HEAD * [new tag] 0.1.1 -> 0.1.1 * [new tag] 0.1.2 -> 0.1.2 * [new tag] 0.1.3 -> 0.1.3 * [new tag] 0.1.4 -> 0.1.4 * [new tag] 0.1.6 -> 0.1.6 * [new tag] 0.1.7 -> 0.1.7 * [new tag] 0.3.0 -> 0.3.0 * [new tag] 0.4.0 -> 0.4.0 * [new tag] 0.4.1 -> 0.4.1 * [new tag] 0.4.3 -> 0.4.3 * [new tag] 0.5.0 -> 0.5.0 * [new tag] 0.5.4 -> 0.5.4 * [new tag] continuwuity-v0.5.0 -> continuwuity-v0.5.0 * [new tag] continuwuity-v0.5.7 -> continuwuity-v0.5.7 * [new tag] jemalloc-sys-0.1.1 -> jemalloc-sys-0.1.1 * [new tag] jemalloc-sys-0.1.2 -> jemalloc-sys-0.1.2 * [new tag] jemalloc-sys-0.1.3 -> jemalloc-sys-0.1.3 * [new tag] jemalloc-sys-0.1.4 -> jemalloc-sys-0.1.4 * [new tag] jemalloc-sys-0.1.5 -> jemalloc-sys-0.1.5 * [new tag] jemalloc-sys-0.1.7 -> jemalloc-sys-0.1.7 * [new tag] tikv-jemalloc-sys-0.4.2 -> tikv-jemalloc-sys-0.4.2 * [new tag] tikv-jemalloc-sys-0.5.1 -> tikv-jemalloc-sys-0.5.1 * [new tag] tikv-jemalloc-sys-0.5.2 -> tikv-jemalloc-sys-0.5.2 * [new tag] tikv-jemalloc-sys-0.5.3 -> tikv-jemalloc-sys-0.5.3 Updating git submodule `https://github.com/tikv/jemalloc` From https://github.com/tikv/jemalloc * [new ref] 09ad115bc02db60cc9d9338cf0067074d3135fb4 -> refs/commit/09ad115bc02db60cc9d9338cf0067074d3135fb4 Updating git repository `https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1` From https://forgejo.ellis.link/continuwuation/rust-rocksdb-zaidoon1 * [new branch] folly-coroutines -> origin/folly-coroutines * [new branch] master -> origin/master * [new branch] renovate/configure -> origin/renovate/configure * [new branch] rust-rocksdb-upstream-master -> origin/rust-rocksdb-upstream-master * [new branch] snappy-1.2.1 -> origin/snappy-1.2.1 * [new branch] strawberry/bump-jemalloc -> origin/strawberry/bump-jemalloc * [new branch] strawberry/freebsd-system-jemalloc -> origin/strawberry/freebsd-system-jemalloc * [new branch] strawberry/remove-gtest -> origin/strawberry/remove-gtest * [new ref] HEAD -> origin/HEAD * [new tag] continuwuity-v0.5.0 -> continuwuity-v0.5.0 * [new tag] continuwuity-v0.5.0-rc.6 -> continuwuity-v0.5.0-rc.6 * [new tag] continuwuity-v0.5.7 -> continuwuity-v0.5.7 * [new tag] v0.5.0-rc.7 -> v0.5.0-rc.7 Updating git submodule `https://forgejo.ellis.link/continuwuation/rocksdb.git` From https://forgejo.ellis.link/continuwuation/rocksdb * [new branch] 10.10.fb -> origin/10.10.fb * [new branch] 10.4.fb -> origin/10.4.fb * [new branch] 10.5.fb -> origin/10.5.fb * [new branch] 2.2.fb.branch -> origin/2.2.fb.branch * [new branch] 2.3.fb.branch -> origin/2.3.fb.branch * [new branch] 2.4.fb.branch -> origin/2.4.fb.branch * [new branch] 2.5.fb.branch -> origin/2.5.fb.branch * [new branch] 2.6.fb.branch -> origin/2.6.fb.branch * [new branch] 2.7 -> origin/2.7 * [new branch] 2.7.fb.branch -> origin/2.7.fb.branch * [new branch] 2.8.1.fb -> origin/2.8.1.fb * [new branch] 2.8.fb -> origin/2.8.fb * [new branch] 2.8.fb.trunk -> origin/2.8.fb.trunk * [new branch] 3.0.fb -> origin/3.0.fb * [new branch] 3.0.fb.branch -> origin/3.0.fb.branch * [new branch] 3.1.fb -> origin/3.1.fb * [new branch] 3.10.fb -> origin/3.10.fb * [new branch] 3.11.fb -> origin/3.11.fb * [new branch] 3.12.fb -> origin/3.12.fb * [new branch] 3.13.fb -> origin/3.13.fb * [new branch] 3.2.fb -> origin/3.2.fb * [new branch] 3.3.fb -> origin/3.3.fb * [new branch] 3.4.fb -> origin/3.4.fb * [new branch] 3.5.fb -> origin/3.5.fb * [new branch] 3.6.fb -> origin/3.6.fb * [new branch] 3.7.fb -> origin/3.7.fb * [new branch] 3.8.fb -> origin/3.8.fb * [new branch] 3.9.fb -> origin/3.9.fb * [new branch] 4.0.fb -> origin/4.0.fb * [new branch] 4.1.fb -> origin/4.1.fb * [new branch] 4.10.fb -> origin/4.10.fb * [new branch] 4.11.fb -> origin/4.11.fb * [new branch] 4.12.fb -> origin/4.12.fb * [new branch] 4.13.fb -> origin/4.13.fb * [new branch] 4.2.fb -> origin/4.2.fb * [new branch] 4.3.fb -> origin/4.3.fb * [new branch] 4.4.fb -> origin/4.4.fb * [new branch] 4.5.fb -> origin/4.5.fb * [new branch] 4.6.fb -> origin/4.6.fb * [new branch] 4.7.fb -> origin/4.7.fb * [new branch] 4.8.fb -> origin/4.8.fb * [new branch] 4.9.fb -> origin/4.9.fb * [new branch] 5.0.fb -> origin/5.0.fb * [new branch] 5.1.fb -> origin/5.1.fb * [new branch] 5.10.fb -> origin/5.10.fb * [new branch] 5.11.fb -> origin/5.11.fb * [new branch] 5.12.fb -> origin/5.12.fb * [new branch] 5.13.fb -> origin/5.13.fb * [new branch] 5.13.fb.myrocks -> origin/5.13.fb.myrocks * [new branch] 5.14.fb -> origin/5.14.fb * [new branch] 5.14.fb.myrocks -> origin/5.14.fb.myrocks * [new branch] 5.15.fb -> origin/5.15.fb * [new branch] 5.16.fb -> origin/5.16.fb * [new branch] 5.17.fb -> origin/5.17.fb * [new branch] 5.17.fb.myrocks -> origin/5.17.fb.myrocks * [new branch] 5.18.fb -> origin/5.18.fb * [new branch] 5.2.fb -> origin/5.2.fb * [new branch] 5.3.fb -> origin/5.3.fb * [new branch] 5.4.fb -> origin/5.4.fb * [new branch] 5.5.fb -> origin/5.5.fb * [new branch] 5.6.fb -> origin/5.6.fb * [new branch] 5.7.fb -> origin/5.7.fb * [new branch] 5.7.fb.myrocks -> origin/5.7.fb.myrocks * [new branch] 5.8.3 -> origin/5.8.3 * [new branch] 5.8.fb -> origin/5.8.fb * [new branch] 5.9.fb -> origin/5.9.fb * [new branch] 5.9.fb.myrocks -> origin/5.9.fb.myrocks * [new branch] 6.0.fb -> origin/6.0.fb * [new branch] 6.0.fb.myrocks -> origin/6.0.fb.myrocks * [new branch] 6.1.fb -> origin/6.1.fb * [new branch] 6.1.fb.myrocks -> origin/6.1.fb.myrocks * [new branch] 6.1.fb.prod201905 -> origin/6.1.fb.prod201905 * [new branch] 6.10.fb -> origin/6.10.fb * [new branch] 6.11.fb -> origin/6.11.fb * [new branch] 6.12.fb -> origin/6.12.fb * [new branch] 6.13.fb -> origin/6.13.fb * [new branch] 6.13.fb.laser -> origin/6.13.fb.laser * [new branch] 6.14.fb -> origin/6.14.fb * [new branch] 6.14.fb.laser -> origin/6.14.fb.laser * [new branch] 6.15.fb -> origin/6.15.fb * [new branch] 6.16.fb -> origin/6.16.fb * [new branch] 6.17.fb -> origin/6.17.fb * [new branch] 6.17.fb.laser -> origin/6.17.fb.laser * [new branch] 6.18.fb -> origin/6.18.fb * [new branch] 6.19.fb -> origin/6.19.fb * [new branch] 6.2.fb -> origin/6.2.fb * [new branch] 6.20.fb -> origin/6.20.fb * [new branch] 6.21.fb -> origin/6.21.fb * [new branch] 6.22-history.md-fixup -> origin/6.22-history.md-fixup * [new branch] 6.22.fb -> origin/6.22.fb * [new branch] 6.23.fb -> origin/6.23.fb * [new branch] 6.24.fb -> origin/6.24.fb * [new branch] 6.25.fb -> origin/6.25.fb * [new branch] 6.26.fb -> origin/6.26.fb * [new branch] 6.27.fb -> origin/6.27.fb * [new branch] 6.28.fb -> origin/6.28.fb * [new branch] 6.29.fb -> origin/6.29.fb * [new branch] 6.3.fb -> origin/6.3.fb * [new branch] 6.3.fb.myrocks -> origin/6.3.fb.myrocks * [new branch] 6.3.fb.myrocks2 -> origin/6.3.fb.myrocks2 * [new branch] 6.3fb -> origin/6.3fb * [new branch] 6.4.fb -> origin/6.4.fb * [new branch] 6.5.fb -> origin/6.5.fb * [new branch] 6.6.fb -> origin/6.6.fb * [new branch] 6.7.fb -> origin/6.7.fb * [new branch] 6.8.fb -> origin/6.8.fb * [new branch] 6.9.fb -> origin/6.9.fb * [new branch] 7.0.fb -> origin/7.0.fb * [new branch] 7.1.fb -> origin/7.1.fb * [new branch] 7.10.fb -> origin/7.10.fb * [new branch] 7.2.fb -> origin/7.2.fb * [new branch] 7.3.fb -> origin/7.3.fb * [new branch] 7.4.fb -> origin/7.4.fb * [new branch] 7.5.fb -> origin/7.5.fb * [new branch] 7.6.fb -> origin/7.6.fb * [new branch] 7.7.fb -> origin/7.7.fb * [new branch] 7.8.fb -> origin/7.8.fb * [new branch] 7.9.fb -> origin/7.9.fb * [new branch] 8.0.fb -> origin/8.0.fb * [new branch] 8.1.fb -> origin/8.1.fb * [new branch] 8.10.fb -> origin/8.10.fb * [new branch] 8.11.2_zippydb -> origin/8.11.2_zippydb * [new branch] 8.11.fb -> origin/8.11.fb * [new branch] 8.11.fb_zippydb -> origin/8.11.fb_zippydb * [new branch] 8.2.fb -> origin/8.2.fb * [new branch] 8.3.fb -> origin/8.3.fb * [new branch] 8.4.fb -> origin/8.4.fb * [new branch] 8.5.fb -> origin/8.5.fb * [new branch] 8.6.fb -> origin/8.6.fb * [new branch] 8.7.fb -> origin/8.7.fb * [new branch] 8.8.fb -> origin/8.8.fb * [new branch] 8.9.fb -> origin/8.9.fb * [new branch] 9.0.fb -> origin/9.0.fb * [new branch] 9.1.fb -> origin/9.1.fb * [new branch] adaptive -> origin/adaptive * [new branch] ajkr-patch-1 -> origin/ajkr-patch-1 * [new branch] ajkr-patch-2 -> origin/ajkr-patch-2 * [new branch] blob_shadow -> origin/blob_shadow * [new branch] bottom-pri-level -> origin/bottom-pri-level * [new branch] bugfix-build-detect -> origin/bugfix-build-detect * [new branch] checksum_readahead_mmap_fix -> origin/checksum_readahead_mmap_fix * [new branch] draft-myrocks-and-fbcode-8.0.fb -> origin/draft-myrocks-and-fbcode-8.0.fb * [new branch] feature/debug-rocksdbjavastatic -> origin/feature/debug-rocksdbjavastatic * [new branch] feature/travis-arm64 -> origin/feature/travis-arm64 * [new branch] fix-release-notes -> origin/fix-release-notes * [new branch] fix-win2022-build -> origin/fix-win2022-build * [new branch] fix-write-batch-comment -> origin/fix-write-batch-comment * [new branch] format_compatible_4 -> origin/format_compatible_4 * [new branch] getmergeops -> origin/getmergeops * [new branch] gh-pages-old -> origin/gh-pages-old * [new branch] history-update -> origin/history-update * [new branch] hotfix/lambda-capture -> origin/hotfix/lambda-capture * [new branch] improve-support -> origin/improve-support * [new branch] jijiew-patch-1 -> origin/jijiew-patch-1 * [new branch] katherinez-patch-1 -> origin/katherinez-patch-1 * [new branch] katherinez-patch-2 -> origin/katherinez-patch-2 * [new branch] main -> origin/main * [new branch] master -> origin/master * [new branch] mdcallag_benchmark_oct22 -> origin/mdcallag_benchmark_oct22 * [new branch] nvm_cache_proto -> origin/nvm_cache_proto * [new branch] pr-sanity-check-as-GHAction -> origin/pr-sanity-check-as-GHAction * [new branch] pr/11267 -> origin/pr/11267 * [new branch] pr/6062 -> origin/pr/6062 * [new branch] ramvadiv-patch-1 -> origin/ramvadiv-patch-1 * [new branch] release_fix -> origin/release_fix * [new branch] renovate/configure -> origin/renovate/configure * [new branch] revert-10606-7.6.1 -> origin/revert-10606-7.6.1 * [new branch] ribbon_bloom_hybrid -> origin/ribbon_bloom_hybrid * [new branch] scaffold -> origin/scaffold * [new branch] siying-patch-1 -> origin/siying-patch-1 * [new branch] siying-patch-10 -> origin/siying-patch-10 * [new branch] siying-patch-2 -> origin/siying-patch-2 * [new branch] siying-patch-3 -> origin/siying-patch-3 * [new branch] siying-patch-4 -> origin/siying-patch-4 * [new branch] siying-patch-5 -> origin/siying-patch-5 * [new branch] siying-patch-6 -> origin/siying-patch-6 * [new branch] siying-patch-7 -> origin/siying-patch-7 * [new branch] siying-patch-8 -> origin/siying-patch-8 * [new branch] skip_memtable_flush -> origin/skip_memtable_flush * [new branch] tags/v9.8.4 -> origin/tags/v9.8.4 * [new branch] testing_ppc_build -> origin/testing_ppc_build * [new branch] tests -> origin/tests * [new branch] unschedule_issue_test_base -> origin/unschedule_issue_test_base * [new branch] unused-var -> origin/unused-var * [new branch] v6.6.4 -> origin/v6.6.4 * [new branch] v9.1.1 -> origin/v9.1.1 * [new branch] v9.10.0 -> origin/v9.10.0 * [new branch] v9.11.1 -> origin/v9.11.1 * [new branch] v9.2.1 -> origin/v9.2.1 * [new branch] v9.3.1 -> origin/v9.3.1 * [new branch] v9.4.0 -> origin/v9.4.0 * [new branch] v9.5.2 -> origin/v9.5.2 * [new branch] v9.6.1 -> origin/v9.6.1 * [new branch] v9.7.2 -> origin/v9.7.2 * [new branch] v9.7.3 -> origin/v9.7.3 * [new branch] v9.7.4 -> origin/v9.7.4 * [new branch] v9.8.4 -> origin/v9.8.4 * [new branch] v9.9.3 -> origin/v9.9.3 * [new branch] xxhash_merge_base -> origin/xxhash_merge_base * [new branch] yiwu_stackable -> origin/yiwu_stackable * [new branch] yuslepukhin -> origin/yuslepukhin * [new ref] HEAD -> origin/HEAD * [new tag] 1.5.7.fb -> 1.5.7.fb * [new tag] 1.5.8.1.fb -> 1.5.8.1.fb * [new tag] 1.5.8.2.fb -> 1.5.8.2.fb * [new tag] 1.5.8.fb -> 1.5.8.fb * [new tag] 1.5.9.1.fb -> 1.5.9.1.fb * [new tag] 1.5.9.2.fb -> 1.5.9.2.fb * [new tag] 1.5.9.fb -> 1.5.9.fb * [new tag] 2.0.fb -> 2.0.fb * [new tag] 2.1.fb -> 2.1.fb * [new tag] 2.2.fb -> 2.2.fb * [new tag] 2.3.fb -> 2.3.fb * [new tag] 2.4.fb -> 2.4.fb * [new tag] 2.5.fb -> 2.5.fb * [new tag] 2.6.fb -> 2.6.fb * [new tag] 2.7.fb -> 2.7.fb * [new tag] 2.8.fb -> 2.8.fb * [new tag] 3.0.fb -> 3.0.fb * [new tag] blob_st_lvl-pre -> blob_st_lvl-pre * [new tag] continuwuity-v0.5.0 -> continuwuity-v0.5.0 * [new tag] continuwuity-v0.5.0-rc.6 -> continuwuity-v0.5.0-rc.6 * [new tag] do-not-use-me2 -> do-not-use-me2 * [new tag] rocksdb-3.1 -> rocksdb-3.1 * [new tag] rocksdb-3.10.1 -> rocksdb-3.10.1 * [new tag] rocksdb-3.10.2 -> rocksdb-3.10.2 * [new tag] rocksdb-3.11 -> rocksdb-3.11 * [new tag] rocksdb-3.11.1 -> rocksdb-3.11.1 * [new tag] rocksdb-3.11.2 -> rocksdb-3.11.2 * [new tag] rocksdb-3.12 -> rocksdb-3.12 * [new tag] rocksdb-3.12.1 -> rocksdb-3.12.1 * [new tag] rocksdb-3.13 -> rocksdb-3.13 * [new tag] rocksdb-3.13.1 -> rocksdb-3.13.1 * [new tag] rocksdb-3.2 -> rocksdb-3.2 * [new tag] rocksdb-3.3 -> rocksdb-3.3 * [new tag] rocksdb-3.4 -> rocksdb-3.4 * [new tag] rocksdb-3.5 -> rocksdb-3.5 * [new tag] rocksdb-3.5.1 -> rocksdb-3.5.1 * [new tag] rocksdb-3.6.1 -> rocksdb-3.6.1 * [new tag] rocksdb-3.6.2 -> rocksdb-3.6.2 * [new tag] rocksdb-3.7 -> rocksdb-3.7 * [new tag] rocksdb-3.8 -> rocksdb-3.8 * [new tag] rocksdb-3.9 -> rocksdb-3.9 * [new tag] rocksdb-3.9.1 -> rocksdb-3.9.1 * [new tag] rocksdb-4.1 -> rocksdb-4.1 * [new tag] rocksdb-4.11.2 -> rocksdb-4.11.2 * [new tag] rocksdb-4.13 -> rocksdb-4.13 * [new tag] rocksdb-4.13.5 -> rocksdb-4.13.5 * [new tag] rocksdb-4.2 -> rocksdb-4.2 * [new tag] rocksdb-4.3 -> rocksdb-4.3 * [new tag] rocksdb-4.3.1 -> rocksdb-4.3.1 * [new tag] rocksdb-4.4 -> rocksdb-4.4 * [new tag] rocksdb-4.4.1 -> rocksdb-4.4.1 * [new tag] rocksdb-4.5.1 -> rocksdb-4.5.1 * [new tag] rocksdb-4.6.1 -> rocksdb-4.6.1 * [new tag] rocksdb-4.8 -> rocksdb-4.8 * [new tag] rocksdb-4.9 -> rocksdb-4.9 * [new tag] rocksdb-5.0.1 -> rocksdb-5.0.1 * [new tag] rocksdb-5.0.2 -> rocksdb-5.0.2 * [new tag] rocksdb-5.1.2 -> rocksdb-5.1.2 * [new tag] rocksdb-5.1.3 -> rocksdb-5.1.3 * [new tag] rocksdb-5.1.4 -> rocksdb-5.1.4 * [new tag] rocksdb-5.10.2 -> rocksdb-5.10.2 * [new tag] rocksdb-5.10.3 -> rocksdb-5.10.3 * [new tag] rocksdb-5.10.4 -> rocksdb-5.10.4 * [new tag] rocksdb-5.11.2 -> rocksdb-5.11.2 * [new tag] rocksdb-5.11.3 -> rocksdb-5.11.3 * [new tag] rocksdb-5.14.3 -> rocksdb-5.14.3 * [new tag] rocksdb-5.2.1 -> rocksdb-5.2.1 * [new tag] rocksdb-5.3.3 -> rocksdb-5.3.3 * [new tag] rocksdb-5.3.4 -> rocksdb-5.3.4 * [new tag] rocksdb-5.3.5 -> rocksdb-5.3.5 * [new tag] rocksdb-5.3.6 -> rocksdb-5.3.6 * [new tag] rocksdb-5.4.10 -> rocksdb-5.4.10 * [new tag] rocksdb-5.4.5 -> rocksdb-5.4.5 * [new tag] rocksdb-5.4.6 -> rocksdb-5.4.6 * [new tag] rocksdb-5.4.7 -> rocksdb-5.4.7 * [new tag] rocksdb-5.5.2 -> rocksdb-5.5.2 * [new tag] rocksdb-5.5.3 -> rocksdb-5.5.3 * [new tag] rocksdb-5.5.4 -> rocksdb-5.5.4 * [new tag] rocksdb-5.5.5 -> rocksdb-5.5.5 * [new tag] rocksdb-5.5.6 -> rocksdb-5.5.6 * [new tag] rocksdb-5.6.1 -> rocksdb-5.6.1 * [new tag] rocksdb-5.6.2 -> rocksdb-5.6.2 * [new tag] rocksdb-5.7.1 -> rocksdb-5.7.1 * [new tag] rocksdb-5.7.2 -> rocksdb-5.7.2 * [new tag] rocksdb-5.7.3 -> rocksdb-5.7.3 * [new tag] rocksdb-5.7.5 -> rocksdb-5.7.5 * [new tag] rocksdb-5.8 -> rocksdb-5.8 * [new tag] rocksdb-5.8.6 -> rocksdb-5.8.6 * [new tag] rocksdb-5.8.7 -> rocksdb-5.8.7 * [new tag] rocksdb-5.8.8 -> rocksdb-5.8.8 * [new tag] rocksdb-5.9.2 -> rocksdb-5.9.2 * [new tag] v1.5.7 -> v1.5.7 * [new tag] v1.5.8 -> v1.5.8 * [new tag] v1.5.8.1 -> v1.5.8.1 * [new tag] v1.5.8.2 -> v1.5.8.2 * [new tag] v1.5.9.1 -> v1.5.9.1 * [new tag] v2.0 -> v2.0 * [new tag] v2.1 -> v2.1 * [new tag] v2.2 -> v2.2 * [new tag] v2.3 -> v2.3 * [new tag] v2.4 -> v2.4 * [new tag] v2.5 -> v2.5 * [new tag] v2.6 -> v2.6 * [new tag] v2.7 -> v2.7 * [new tag] v2.8 -> v2.8 * [new tag] v3.0 -> v3.0 * [new tag] v3.1 -> v3.1 * [new tag] v3.10 -> v3.10 * [new tag] v3.11 -> v3.11 * [new tag] v3.12 -> v3.12 * [new tag] v3.12.1 -> v3.12.1 * [new tag] v3.13 -> v3.13 * [new tag] v3.13.1 -> v3.13.1 * [new tag] v3.2 -> v3.2 * [new tag] v3.3 -> v3.3 * [new tag] v3.4 -> v3.4 * [new tag] v3.5 -> v3.5 * [new tag] v3.6.1 -> v3.6.1 * [new tag] v3.7 -> v3.7 * [new tag] v3.8 -> v3.8 * [new tag] v3.9 -> v3.9 * [new tag] v4.0 -> v4.0 * [new tag] v4.1 -> v4.1 * [new tag] v4.11.2 -> v4.11.2 * [new tag] v4.13 -> v4.13 * [new tag] v4.13.5 -> v4.13.5 * [new tag] v4.2 -> v4.2 * [new tag] v4.3 -> v4.3 * [new tag] v4.3.1 -> v4.3.1 * [new tag] v4.4 -> v4.4 * [new tag] v4.4.1 -> v4.4.1 * [new tag] v4.5.1 -> v4.5.1 * [new tag] v4.6.1 -> v4.6.1 * [new tag] v4.8 -> v4.8 * [new tag] v4.9 -> v4.9 * [new tag] v5.0.1 -> v5.0.1 * [new tag] v5.0.2 -> v5.0.2 * [new tag] v5.1.2 -> v5.1.2 * [new tag] v5.1.3 -> v5.1.3 * [new tag] v5.1.4 -> v5.1.4 * [new tag] v5.10.2 -> v5.10.2 * [new tag] v5.10.3 -> v5.10.3 * [new tag] v5.10.4 -> v5.10.4 * [new tag] v5.11.2 -> v5.11.2 * [new tag] v5.11.3 -> v5.11.3 * [new tag] v5.12.2 -> v5.12.2 * [new tag] v5.12.3 -> v5.12.3 * [new tag] v5.12.4 -> v5.12.4 * [new tag] v5.12.5 -> v5.12.5 * [new tag] v5.13.1 -> v5.13.1 * [new tag] v5.13.2 -> v5.13.2 * [new tag] v5.13.3 -> v5.13.3 * [new tag] v5.13.4 -> v5.13.4 * [new tag] v5.14.2 -> v5.14.2 * [new tag] v5.14.3 -> v5.14.3 * [new tag] v5.15.10 -> v5.15.10 * [new tag] v5.16.6 -> v5.16.6 * [new tag] v5.17.2 -> v5.17.2 * [new tag] v5.18.3 -> v5.18.3 * [new tag] v5.18.4 -> v5.18.4 * [new tag] v5.2.1 -> v5.2.1 * [new tag] v5.3.3 -> v5.3.3 * [new tag] v5.3.4 -> v5.3.4 * [new tag] v5.3.5 -> v5.3.5 * [new tag] v5.3.6 -> v5.3.6 * [new tag] v5.4.10 -> v5.4.10 * [new tag] v5.4.5 -> v5.4.5 * [new tag] v5.4.6 -> v5.4.6 * [new tag] v5.4.7 -> v5.4.7 * [new tag] v5.5.1 -> v5.5.1 * [new tag] v5.5.2 -> v5.5.2 * [new tag] v5.5.3 -> v5.5.3 * [new tag] v5.5.4 -> v5.5.4 * [new tag] v5.5.5 -> v5.5.5 * [new tag] v5.5.6 -> v5.5.6 * [new tag] v5.6.1 -> v5.6.1 * [new tag] v5.6.2 -> v5.6.2 * [new tag] v5.7.1 -> v5.7.1 * [new tag] v5.7.2 -> v5.7.2 * [new tag] v5.7.3 -> v5.7.3 * [new tag] v5.7.5 -> v5.7.5 * [new tag] v5.8 -> v5.8 * [new tag] v5.8.6 -> v5.8.6 * [new tag] v5.8.7 -> v5.8.7 * [new tag] v5.8.8 -> v5.8.8 * [new tag] v5.9.2 -> v5.9.2 * [new tag] v6.0.1 -> v6.0.1 * [new tag] v6.0.2 -> v6.0.2 * [new tag] v6.1.1 -> v6.1.1 * [new tag] v6.1.2 -> v6.1.2 * [new tag] v6.10.1 -> v6.10.1 * [new tag] v6.10.2 -> v6.10.2 * [new tag] v6.11.4 -> v6.11.4 * [new tag] v6.11.6 -> v6.11.6 * [new tag] v6.12.6 -> v6.12.6 * [new tag] v6.12.7 -> v6.12.7 * [new tag] v6.13.2 -> v6.13.2 * [new tag] v6.13.3 -> v6.13.3 * [new tag] v6.14.5 -> v6.14.5 * [new tag] v6.14.6 -> v6.14.6 * [new tag] v6.15.2 -> v6.15.2 * [new tag] v6.15.4 -> v6.15.4 * [new tag] v6.15.5 -> v6.15.5 * [new tag] v6.16.3 -> v6.16.3 * [new tag] v6.16.4 -> v6.16.4 * [new tag] v6.17.3 -> v6.17.3 * [new tag] v6.19.3 -> v6.19.3 * [new tag] v6.2.2 -> v6.2.2 * [new tag] v6.2.4 -> v6.2.4 * [new tag] v6.20.3 -> v6.20.3 * [new tag] v6.22.1 -> v6.22.1 * [new tag] v6.23.2 -> v6.23.2 * [new tag] v6.23.3 -> v6.23.3 * [new tag] v6.24.2 -> v6.24.2 * [new tag] v6.25.1 -> v6.25.1 * [new tag] v6.25.3 -> v6.25.3 * [new tag] v6.26.0 -> v6.26.0 * [new tag] v6.26.1 -> v6.26.1 * [new tag] v6.27.3 -> v6.27.3 * [new tag] v6.28.2 -> v6.28.2 * [new tag] v6.29.3 -> v6.29.3 * [new tag] v6.29.4 -> v6.29.4 * [new tag] v6.29.5 -> v6.29.5 * [new tag] v6.3.6 -> v6.3.6 * [new tag] v6.4.6 -> v6.4.6 * [new tag] v6.5.2 -> v6.5.2 * [new tag] v6.5.3 -> v6.5.3 * [new tag] v6.6.3 -> v6.6.3 * [new tag] v6.6.4 -> v6.6.4 * [new tag] v6.7.3 -> v6.7.3 * [new tag] v6.8.1 -> v6.8.1 * [new tag] v7.0.1 -> v7.0.1 * [new tag] v7.0.2 -> v7.0.2 * [new tag] v7.0.3 -> v7.0.3 * [new tag] v7.0.4 -> v7.0.4 * [new tag] v7.1.1 -> v7.1.1 * [new tag] v7.1.2 -> v7.1.2 * [new tag] v7.10.2 -> v7.10.2 * [new tag] v7.2.0 -> v7.2.0 * [new tag] v7.2.2 -> v7.2.2 * [new tag] v7.3.1 -> v7.3.1 * [new tag] v7.4.3 -> v7.4.3 * [new tag] v7.4.4 -> v7.4.4 * [new tag] v7.4.5 -> v7.4.5 * [new tag] v7.5.3 -> v7.5.3 * [new tag] v7.6.0 -> v7.6.0 * [new tag] v7.7.2 -> v7.7.2 * [new tag] v7.7.3 -> v7.7.3 * [new tag] v7.7.8 -> v7.7.8 * [new tag] v7.8.3 -> v7.8.3 * [new tag] v7.9.2 -> v7.9.2 * [new tag] v8.0.0 -> v8.0.0 * [new tag] v8.1.1 -> v8.1.1 * [new tag] v8.10.0 -> v8.10.0 * [new tag] v8.10.2 -> v8.10.2 * [new tag] v8.11.3 -> v8.11.3 * [new tag] v8.3.2 -> v8.3.2 * [new tag] v8.3.3 -> v8.3.3 * [new tag] v8.4.4 -> v8.4.4 * [new tag] v8.5.3 -> v8.5.3 * [new tag] v8.5.4 -> v8.5.4 * [new tag] v8.6.7 -> v8.6.7 * [new tag] v8.7.3 -> v8.7.3 * [new tag] v8.8.1 -> v8.8.1 * [new tag] v8.9.1 -> v8.9.1 * [new tag] v9.0.0 -> v9.0.0 Updating git submodule `https://github.com/google/snappy.git` From https://github.com/google/snappy * [new ref] 6af9287fbdb913f0794d0148c6aa43b58e63c8e3 -> refs/commit/6af9287fbdb913f0794d0148c6aa43b58e63c8e3 Updating git submodule `https://github.com/google/benchmark.git` From https://github.com/google/benchmark * [new ref] d572f4777349d43653b21d6c2fc63020ab326db2 -> refs/commit/d572f4777349d43653b21d6c2fc63020ab326db2 Updating git submodule `https://github.com/google/googletest.git` From https://github.com/google/googletest * [new ref] b796f7d44681514f58a683a3a71ff17c94edb0c1 -> refs/commit/b796f7d44681514f58a683a3a71ff17c94edb0c1 error: failed to select a version for `reqwest`. ... required by package `conduwuit_api v0.5.7-alpha.1 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/api)` ... which satisfies path dependency `conduwuit-api` (locked to 0.5.7-alpha.1) of package `conduwuit v0.5.7-alpha.1 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/src/main)` ... which satisfies path dependency `conduwuit` (locked to 0.5.7-alpha.1) of package `xtask v0.5.7-alpha.1 (/tmp/renovate/repos/forgejo/continuwuation/continuwuity/xtask)` versions that meet the requirements `^0.13.0` are: 0.13.2, 0.13.1, 0.13.0 package `conduwuit_api` depends on `reqwest` with feature `rustls-tls-native-roots` but `reqwest` does not have that feature. available features: __native-tls, __native-tls-alpn, __rustls, __rustls-aws-lc-rs, __tls, blocking, brotli, charset, cookies, default, default-tls, deflate, form, gzip, h2, hickory-dns, http2, http3, json, multipart, native-tls, native-tls-no-alpn, native-tls-vendored, native-tls-vendored-no-alpn, query, rustls, rustls-native-certs, rustls-no-provider, socks, stream, system-proxy, webpki-roots, zstd failed to select a version for `reqwest` which could resolve this conflict ```
renovate force-pushed renovate/reqwest-0.x from 00f03c19ec
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m33s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m34s
Update flake hashes / update-flake-hashes (pull_request) Successful in 45s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 8m39s
to 20a0864cfe
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 3m30s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m20s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 9m2s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 12m21s
2026-02-19 14:56:18 +00:00
Compare
renovate force-pushed renovate/reqwest-0.x from 00f03c19ec
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m33s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m34s
Update flake hashes / update-flake-hashes (pull_request) Successful in 45s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 8m39s
to d360b1df58 2026-03-08 14:52:27 +00:00
Compare
renovate force-pushed renovate/reqwest-0.x from 00f03c19ec
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m33s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m34s
Update flake hashes / update-flake-hashes (pull_request) Successful in 45s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 8m39s
to 6e4d028a2d
Some checks failed
renovate/artifacts Artifact file update failure
2026-03-09 13:01:33 +00:00
Compare
renovate force-pushed renovate/reqwest-0.x from 00f03c19ec
Some checks failed
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m33s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m34s
Update flake hashes / update-flake-hashes (pull_request) Successful in 45s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 8m39s
to c9f5b89dd8
Some checks failed
Check Changelog / Check for changelog (pull_request_target) Waiting to run
renovate/artifacts Artifact file update failure
Checks / Changelog / Check changelog is added (pull_request_target) Waiting to run
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m41s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1m50s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m55s
Documentation / Build and Deploy Documentation (pull_request) Successful in 4m47s
2026-04-10 08:30:19 +00:00
Compare
renovate force-pushed renovate/reqwest-0.x from c9f5b89dd8
Some checks failed
Check Changelog / Check for changelog (pull_request_target) Waiting to run
renovate/artifacts Artifact file update failure
Checks / Changelog / Check changelog is added (pull_request_target) Waiting to run
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m41s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1m50s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m55s
Documentation / Build and Deploy Documentation (pull_request) Successful in 4m47s
to d9bc28064b
Some checks failed
renovate/artifacts Artifact file update failure
2026-04-13 05:24:09 +00:00
Compare
renovate force-pushed renovate/reqwest-0.x from c9f5b89dd8
Some checks failed
Check Changelog / Check for changelog (pull_request_target) Waiting to run
renovate/artifacts Artifact file update failure
Checks / Changelog / Check changelog is added (pull_request_target) Waiting to run
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m41s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 1m50s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m55s
Documentation / Build and Deploy Documentation (pull_request) Successful in 4m47s
to 1f4f521939
Some checks failed
Checks / Changelog / Check changelog is added (pull_request_target) Waiting to run
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m9s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m28s
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m52s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 3m18s
2026-04-15 05:04:28 +00:00
Compare
Some checks failed
Checks / Changelog / Check changelog is added (pull_request_target) Waiting to run
Required
Details
renovate/artifacts Artifact file update failure
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m9s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 1m28s
Required
Details
Update flake hashes / update-flake-hashes (pull_request) Successful in 1m52s
Checks / Prek / Clippy and Cargo Tests (pull_request) Failing after 3m18s
Required
Details
This pull request is blocked because it's outdated.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/reqwest-0.x:renovate/reqwest-0.x
git switch renovate/reqwest-0.x
Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
continuwuation/continuwuity!1411
No description provided.