Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

chore(deps): pin dependencies #17

Merged
merged 1 commit into from
Sep 17, 2023
Merged

chore(deps): pin dependencies #17

merged 1 commit into from
Sep 17, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 17, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
EmbarkStudios/cargo-deny-action action pinDigest -> a50c7d5
actions/checkout action pinDigest -> f43a0e5

Configuration

📅 Schedule: 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the A-dependencies Area: Pull requests that update a dependency file label Sep 17, 2023
@simonsan simonsan added this pull request to the merge queue Sep 17, 2023
Merged via the queue into main with commit c090b6c Sep 17, 2023
18 checks passed
@simonsan simonsan deleted the renovate/pin-dependencies branch September 17, 2023 02:00
github-merge-queue bot pushed a commit that referenced this pull request Oct 1, 2024
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|  |  | lockFileMaintenance | All locks refreshed |
| [env_logger](https://redirect.github.com/rust-cli/env_logger) |
dependencies | minor | `0.10` -> `0.11` |
| [gethostname](https://redirect.github.com/swsnr/gethostname.rs) |
dependencies | minor | `0.4.3` -> `0.5.0` |
| [rustic_core](https://rustic.cli.rs/)
([source](https://redirect.github.com/rustic-rs/rustic_core)) |
dependencies | minor | `0.1` -> `0.4` |
| [sailfish](https://redirect.github.com/rust-sailfish/sailfish) |
dependencies | minor | `0.8` -> `0.9` |
| [tungstenite](https://redirect.github.com/snapview/tungstenite-rs) |
dependencies | minor | `0.21` -> `0.24` |

🔧 This Pull Request updates lock files to use the latest dependency
versions.

---

### Release Notes

<details>
<summary>rust-cli/env_logger (env_logger)</summary>

###
[`v0.11.5`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0115---2024-07-25)

[Compare
Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.4...v0.11.5)

###
[`v0.11.4`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0114---2024-07-23)

[Compare
Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.3...v0.11.4)

###
[`v0.11.3`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0113---2024-03-05)

[Compare
Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.2...v0.11.3)

##### Features

-   Experimental support for key-value logging behind `unstable-kv`

###
[`v0.11.2`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0112---2024-02-13)

[Compare
Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.1...v0.11.2)

###
[`v0.11.1`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0111---2024-01-27)

[Compare
Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.11.0...v0.11.1)

##### Fixes

-   Allow styling with `Target::Pipe`

###
[`v0.11.0`](https://redirect.github.com/rust-cli/env_logger/blob/HEAD/CHANGELOG.md#0110---2024-01-19)

[Compare
Source](https://redirect.github.com/rust-cli/env_logger/compare/v0.10.2...v0.11.0)

##### Migration Guide

**env_logger::fmt::Style:**
The bespoke styling API, behind `color`, was removed, in favor of
accepting any
ANSI styled string and adapting it to the target stream's capabilities.

Possible styling libraries include:

- [anstyle](https://docs.rs/anstyle) is a minimal, runtime string
styling API and is re-exported as `env_logger::fmt::style`
- [owo-colors](https://docs.rs/owo-colors) is a feature rich runtime
string styling API
- [color-print](https://docs.rs/color-print) for feature-rich
compile-time styling API


[custom_format.rs](https://docs.rs/env_logger/latest/src/custom_format/custom_format.rs.html)
uses `anstyle` via

[`Formatter::default_level_style`](https://docs.rs/env_logger/latest/env_logger/fmt/struct.Formatter.html#method.default_level_style)

##### Breaking Change

-   Removed bespoke styling API
    -   `env_logger::fmt::Formatter::style`
    -   `env_logger::fmt::Formatter::default_styled_level`
    -   `env_logger::fmt::Style`
    -   `env_logger::fmt::Color`
    -   `env_logger::fmt::StyledValue`
-   Removed `env_logger::filter` in favor of `env_filter`

##### Compatibility

MSRV changed to 1.71

##### Features

- Automatically adapt ANSI escape codes in logged messages to the
current terminal's capabilities
- Add support for `NO_COLOR` and `CLICOLOR_FORCE`, see
https://bixense.com/clicolors/

##### Fixes

-   Print colors when `is_test(true)`

</details>

<details>
<summary>swsnr/gethostname.rs (gethostname)</summary>

###
[`v0.5.0`](https://redirect.github.com/swsnr/gethostname.rs/blob/HEAD/CHANGELOG.md#050--2024-07-06)

[Compare
Source](https://redirect.github.com/swsnr/gethostname.rs/compare/v0.4.3...v0.5.0)

##### Changed

- On Unix, use `rustix` to provide a simple implementation of
`gethostname`
    without `unsafe` (see [GH-10] and [GH-17]).

[GH-10]: https://redirect.github.com/swsnr/gethostname.rs/pull/10

[GH-17]: https://redirect.github.com/swsnr/gethostname.rs/pull/17

</details>

<details>
<summary>rustic-rs/rustic_core (rustic_core)</summary>

###
[`v0.4.0`](https://redirect.github.com/rustic-rs/rustic_core/releases/tag/rustic_core-v0.4.0)

[Compare
Source](https://redirect.github.com/rustic-rs/rustic_core/compare/rustic_core-v0.3.1...rustic_core-v0.4.0)

##### Added

-   make IndexPack::pack_size() public
- Add Repository::drop_index and ::drop_data_from_index
([#&#8203;166](https://redirect.github.com/rustic-rs/rustic_core/pull/166))
- *(commands)* Add option stdin_command to be used in CLI and config
file
([#&#8203;266](https://redirect.github.com/rustic-rs/rustic_core/pull/266))
- \[**breaking**] Use CommandInput for commands
([#&#8203;269](https://redirect.github.com/rustic-rs/rustic_core/pull/269))
- Add CommandInput
([#&#8203;252](https://redirect.github.com/rustic-rs/rustic_core/pull/252))

##### Fixed

- de/serialize tags as DisplayFromStr
([#&#8203;270](https://redirect.github.com/rustic-rs/rustic_core/pull/270))
- \[**breaking**] use plural names for options
([#&#8203;267](https://redirect.github.com/rustic-rs/rustic_core/pull/267))
-   fix clippy lint
-   *(test)* shorten snapshot names for windows environment
- \[**breaking**] improve password-command error reporting
([#&#8203;265](https://redirect.github.com/rustic-rs/rustic_core/pull/265))
- properly finish progress bar in Repository::get_snapshot_group
([#&#8203;263](https://redirect.github.com/rustic-rs/rustic_core/pull/263))

##### Other

- remove readme versions in usage section for easier release due to
release PR
([#&#8203;271](https://redirect.github.com/rustic-rs/rustic_core/pull/271))
- \[**breaking**] Use different Id types
([#&#8203;256](https://redirect.github.com/rustic-rs/rustic_core/pull/256))
- Use serde_with::skip_serializing_none instead of manual mapping
([#&#8203;251](https://redirect.github.com/rustic-rs/rustic_core/pull/251))

###
[`v0.3.1`](https://redirect.github.com/rustic-rs/rustic_core/releases/tag/rustic_core-v0.3.1)

[Compare
Source](https://redirect.github.com/rustic-rs/rustic_core/compare/rustic_core-v0.3.0...rustic_core-v0.3.1)

##### Added

- Add autocompletion hints
([#&#8203;257](https://redirect.github.com/rustic-rs/rustic_core/pull/257))

##### Fixed

- don't give invalid password error for other keyfile errors
([#&#8203;247](https://redirect.github.com/rustic-rs/rustic_core/pull/247))
- adjust tests to new Rust version
([#&#8203;259](https://redirect.github.com/rustic-rs/rustic_core/pull/259))
- fix FromStr for SnapshotGroupCriterion
([#&#8203;254](https://redirect.github.com/rustic-rs/rustic_core/pull/254))
- make more Indexed traits public
([#&#8203;253](https://redirect.github.com/rustic-rs/rustic_core/pull/253))
- fix StringList::contains_all
([#&#8203;246](https://redirect.github.com/rustic-rs/rustic_core/pull/246))
- *(build)* unbreak building on OpenBSD
([#&#8203;245](https://redirect.github.com/rustic-rs/rustic_core/pull/245))

###
[`v0.3.0`](https://redirect.github.com/rustic-rs/rustic_core/releases/tag/rustic_core-v0.3.0):
rustic_core v0.3.0

[Compare
Source](https://redirect.github.com/rustic-rs/rustic_core/compare/rustic_core-v0.2.0...rustic_core-v0.3.0)

### Changelog

####
[0.3.0](https://redirect.github.com/rustic-rs/rustic_core/compare/rustic_core-v0.2.0...rustic_core-v0.3.0)
- 2024-08-18

##### Added

- *(forget)* \[**breaking**] Make keep-\* Options and add keep-none
([#&#8203;238](https://redirect.github.com/rustic-rs/rustic_core/pull/238))
- add search methods to Repository
([#&#8203;212](https://redirect.github.com/rustic-rs/rustic_core/pull/212))
- \[**breaking**] Allow specifying many options in config profile
without array
([#&#8203;211](https://redirect.github.com/rustic-rs/rustic_core/pull/211))
- \[**breaking**] move clippy lints to cargo manifest and fix upcoming
issues all over the workspace
([#&#8203;176](https://redirect.github.com/rustic-rs/rustic_core/pull/176))
- Add extra check before writing data
([#&#8203;154](https://redirect.github.com/rustic-rs/rustic_core/pull/154))
-   Allow missing fields in snapshot summary
- Hide plain text password from help text
([#&#8203;170](https://redirect.github.com/rustic-rs/rustic_core/pull/170))
- Add Repository::to_indexed_checked and ::to_index_ids_checked()
([#&#8203;168](https://redirect.github.com/rustic-rs/rustic_core/pull/168))
- *(prune)* Add more debug info to stats
([#&#8203;162](https://redirect.github.com/rustic-rs/rustic_core/pull/162))
- Add append-only repository mode
([#&#8203;164](https://redirect.github.com/rustic-rs/rustic_core/pull/164))

##### Fixed

- parse commands given by arg or env using shell_words
([#&#8203;240](https://redirect.github.com/rustic-rs/rustic_core/pull/240))
- Allow non-value/null xattr
([#&#8203;235](https://redirect.github.com/rustic-rs/rustic_core/pull/235))
-   ensure Rust 1.76.0 compiles
- backup file even if failed listing extended attributes
([#&#8203;233](https://redirect.github.com/rustic-rs/rustic_core/pull/233))
- Export types so the Repository type can be fully specified
([#&#8203;229](https://redirect.github.com/rustic-rs/rustic_core/pull/229))
- Always sort StringList
([#&#8203;226](https://redirect.github.com/rustic-rs/rustic_core/pull/226))
-   *(commands)* Properly finish progress bars
- *(commands)* \[**breaking**] Fix edge case for repair index
([#&#8203;219](https://redirect.github.com/rustic-rs/rustic_core/pull/219))
- clippy lints
([#&#8203;220](https://redirect.github.com/rustic-rs/rustic_core/pull/220))
- *(errors)* Show filenames in error message coming from ignore source
([#&#8203;215](https://redirect.github.com/rustic-rs/rustic_core/pull/215))
- *(paths)* Handle paths starting with "." correctly
([#&#8203;213](https://redirect.github.com/rustic-rs/rustic_core/pull/213))
- Add warning about unsorted files and sort where neccessary
([#&#8203;205](https://redirect.github.com/rustic-rs/rustic_core/pull/205))
- *(deps)* update rust crate thiserror to 1.0.58
([#&#8203;192](https://redirect.github.com/rustic-rs/rustic_core/pull/192))
- *(deps)* update rust crate anyhow to 1.0.81
([#&#8203;191](https://redirect.github.com/rustic-rs/rustic_core/pull/191))
- *(deps)* update rust crate serde_with to 3.7.0
([#&#8203;189](https://redirect.github.com/rustic-rs/rustic_core/pull/189))
- *(rclone)* Use semver for version checking
([#&#8203;188](https://redirect.github.com/rustic-rs/rustic_core/pull/188))
- *(deps)* update rust crate strum to 0.26.2
([#&#8203;187](https://redirect.github.com/rustic-rs/rustic_core/pull/187))
- *(deps)* update rust crate clap to 4.5.2
([#&#8203;183](https://redirect.github.com/rustic-rs/rustic_core/pull/183))
- Set correct content for symlink with parent snapshot
([#&#8203;174](https://redirect.github.com/rustic-rs/rustic_core/pull/174))
- update dependency nix
([#&#8203;169](https://redirect.github.com/rustic-rs/rustic_core/pull/169))
- *(memory)* Limit memory usage for restore when having large pack files
([#&#8203;165](https://redirect.github.com/rustic-rs/rustic_core/pull/165))
- *(prune)* Correct number of repacks
([#&#8203;167](https://redirect.github.com/rustic-rs/rustic_core/pull/167))
- updated msrv and fix clippy lints
([#&#8203;160](https://redirect.github.com/rustic-rs/rustic_core/pull/160))

##### Other

-   dependency updates
-   Ensure that MSRV 1.76 works
- *(deps)* more version updates
([#&#8203;237](https://redirect.github.com/rustic-rs/rustic_core/pull/237))
-   Update MSRV to 1.76.0
- *(deps)* Several version updates
([#&#8203;234](https://redirect.github.com/rustic-rs/rustic_core/pull/234))
- fix clippy lints
([#&#8203;236](https://redirect.github.com/rustic-rs/rustic_core/pull/236))
-   Update MSRV (needed by opendal)
-   update sha2 dependency
- add integration tests for `prune` and `ls`
([#&#8203;221](https://redirect.github.com/rustic-rs/rustic_core/pull/221))
- *(error)* Add error sources
([#&#8203;217](https://redirect.github.com/rustic-rs/rustic_core/pull/217))
-   add more warnings
- make SnapshotFile::cmp_group public
([#&#8203;210](https://redirect.github.com/rustic-rs/rustic_core/pull/210))
-   Update MSRV to 1.73.0
-   fix clippy lints
- add backup integration tests using snapshots
([#&#8203;175](https://redirect.github.com/rustic-rs/rustic_core/pull/175))
- replace dep bitmask-enum by enumset
([#&#8203;173](https://redirect.github.com/rustic-rs/rustic_core/pull/173))
- *(deps)* update dependencies
([#&#8203;180](https://redirect.github.com/rustic-rs/rustic_core/pull/180))
- use release-plz action, remove public api fixtures incl. test and
related ci and other release related ci
- Add unit tests for extra verification
([#&#8203;172](https://redirect.github.com/rustic-rs/rustic_core/pull/172))
-   rustic_config v0.1.0
-   add rustic_testing to workspace crates

###
[`v0.2.0`](https://redirect.github.com/rustic-rs/rustic_core/releases/tag/rustic_core-v0.2.0):
rustic_core v0.2.0

[Compare
Source](https://redirect.github.com/rustic-rs/rustic_core/compare/0.1.2...rustic_core-v0.2.0)

#### rustic_core-v0.2.0 - 2024-02-01

##### BREAKING CHANGES

- The `Repository::ls()` method now returnes an iterator with yielding
elements with restricted lifetime. You may need to change your code to
handle this, see e.g.
rustic-rs/rustic@5be54a1
- config changes from `[repository]` to `[backend]` [(check `config/` in
rustic)](https://redirect.github.com/rustic-rs/rustic/tree/main/config)
- for rustic core API: the way how to construct a repository changed,
`struct RepositoryOptions` changed
-   Please check also our examples for changes and updated usage

##### Bug Fixes

- Don't produce error when initializing a new hot/cold repository
([#&#8203;112](https://redirect.github.com/rustic-rs/rustic_core/issues/112))
-   Add missing Serialize derive on KeepOptions
- Repair index: Don't set "to-delete" flag for newly read pack files
([#&#8203;113](https://redirect.github.com/rustic-rs/rustic_core/issues/113))
- Don't abort on negative elapsed time in packer/indexer
([#&#8203;138](https://redirect.github.com/rustic-rs/rustic_core/issues/138))
-   Remove unmaintained `actions-rs` ci actions
-   Clippy missing backticks for item

##### Documentation

-   Fix c\&p for SftpBackend
-   Update examples and other minor things
-   Update Changelog
-   Update intra doc links
-   Add features and fix intra-doc links

##### Features

- Add `--custom-ignorefile` command line flag
([#&#8203;74](https://redirect.github.com/rustic-rs/rustic_core/issues/74))
- Add options rclone-command, use-password, rest-url to rclone backend
([#&#8203;139](https://redirect.github.com/rustic-rs/rustic_core/issues/139))
- Add vfs and webdav fs
([#&#8203;106](https://redirect.github.com/rustic-rs/rustic_core/issues/106))

##### Generated

-   Updated Public API fixtures for linux
-   Updated Public API fixtures for macos
-   Updated Public API fixtures for windows

##### Miscellaneous Tasks

-   Run actions that need secrets.GITHUB_TOKEN only on rustic-rs org
-   Set MSRV to 1.70.0
-   Update dtolnay/rust-toolchain
-   Update taiki-e/install-action
-   Update rustsec/audit-check
-   Activate automerge for github action digest update
-   Release
-   Add rustic_backend to release-pr workflow
-   Update dependencies
-   Fix directory for public api fixtures for core

##### Backend

- Add sftp backend
([#&#8203;126](https://redirect.github.com/rustic-rs/rustic_core/issues/126))

##### Backup

- Add option to omit identical backups
([#&#8203;56](https://redirect.github.com/rustic-rs/rustic_core/issues/56))
- Run size scanning parallel to backup; add no-scan option
([#&#8203;97](https://redirect.github.com/rustic-rs/rustic_core/issues/97))

##### Cache

- Don't write warnings if cache files don't exist
([#&#8203;100](https://redirect.github.com/rustic-rs/rustic_core/issues/100))

##### Copy

- Add better progress
([#&#8203;94](https://redirect.github.com/rustic-rs/rustic_core/issues/94))
- Double-check for duplicate blobs
([#&#8203;148](https://redirect.github.com/rustic-rs/rustic_core/issues/148))

##### Prune

- Add option early_delete_index
([#&#8203;63](https://redirect.github.com/rustic-rs/rustic_core/issues/63))
- Change default of max-repack to 10%
([#&#8203;64](https://redirect.github.com/rustic-rs/rustic_core/issues/64))

##### Updated Dependencies

- Update rust crate itertools to 0.12.0
([#&#8203;57](https://redirect.github.com/rustic-rs/rustic_core/issues/57))
- Update rust crate enum-map to 2.7.2
([#&#8203;60](https://redirect.github.com/rustic-rs/rustic_core/issues/60))
- Update rust crate enum-map-derive to 0.16.0
([#&#8203;62](https://redirect.github.com/rustic-rs/rustic_core/issues/62))
- Update serde monorepo to 1.0.193
([#&#8203;66](https://redirect.github.com/rustic-rs/rustic_core/issues/66))
- Update rust crate url to 2.5.0
([#&#8203;67](https://redirect.github.com/rustic-rs/rustic_core/issues/67))
- Update rust crate enum-map-derive to 0.17.0
([#&#8203;69](https://redirect.github.com/rustic-rs/rustic_core/issues/69))
- Update rust crate enum-map to 2.7.3
([#&#8203;68](https://redirect.github.com/rustic-rs/rustic_core/issues/68))
- Update rust crate binrw to 0.13.2
([#&#8203;71](https://redirect.github.com/rustic-rs/rustic_core/issues/71))
- Update rust crate cachedir to 0.3.1
([#&#8203;84](https://redirect.github.com/rustic-rs/rustic_core/issues/84))
- Update rust crate clap to 4.4.11
([#&#8203;81](https://redirect.github.com/rustic-rs/rustic_core/issues/81))
- Update rust crate filetime to 0.2.23
([#&#8203;87](https://redirect.github.com/rustic-rs/rustic_core/issues/87))
- Update rust crate serde-aux to 4.3.1
([#&#8203;91](https://redirect.github.com/rustic-rs/rustic_core/issues/91))
- Update rust crate crossbeam-channel to 0.5.9
([#&#8203;93](https://redirect.github.com/rustic-rs/rustic_core/issues/93))
- Update rust crate thiserror to 1.0.51
([#&#8203;95](https://redirect.github.com/rustic-rs/rustic_core/issues/95))
- Update rust crate reqwest to 0.11.23
([#&#8203;99](https://redirect.github.com/rustic-rs/rustic_core/issues/99))
- Update rust crate crossbeam-channel to 0.5.10
([#&#8203;107](https://redirect.github.com/rustic-rs/rustic_core/issues/107))
- Update rust crate thiserror to 1.0.52
([#&#8203;108](https://redirect.github.com/rustic-rs/rustic_core/issues/108))
- Update rust crate clap to 4.4.12
([#&#8203;114](https://redirect.github.com/rustic-rs/rustic_core/issues/114))
- Update rust crate serde_json to 1.0.110
([#&#8203;115](https://redirect.github.com/rustic-rs/rustic_core/issues/115))
- Update rust crate thiserror to 1.0.56
([#&#8203;116](https://redirect.github.com/rustic-rs/rustic_core/issues/116))
- Update serde monorepo to 1.0.194
([#&#8203;117](https://redirect.github.com/rustic-rs/rustic_core/issues/117))
- Update rust crate cached to 0.47.0
([#&#8203;119](https://redirect.github.com/rustic-rs/rustic_core/issues/119))
- Update rust crate serde_json to 1.0.111
([#&#8203;120](https://redirect.github.com/rustic-rs/rustic_core/issues/120))
- Update rust crate clap to 4.4.13
([#&#8203;121](https://redirect.github.com/rustic-rs/rustic_core/issues/121))
- Update rust crate ignore to 0.4.22
([#&#8203;123](https://redirect.github.com/rustic-rs/rustic_core/issues/123))
- Update serde monorepo to 1.0.195
([#&#8203;124](https://redirect.github.com/rustic-rs/rustic_core/issues/124))
- Update rust crate serde-aux to 4.4.0
([#&#8203;132](https://redirect.github.com/rustic-rs/rustic_core/issues/132))
- Update rust crate clap to 4.4.18
([#&#8203;130](https://redirect.github.com/rustic-rs/rustic_core/issues/130))
- Update rust crate rayon to 1.8.1
([#&#8203;131](https://redirect.github.com/rustic-rs/rustic_core/issues/131))
- Update rust crate opendal to 0.44.2
([#&#8203;133](https://redirect.github.com/rustic-rs/rustic_core/issues/133))
- Update rust crate serde_with to 3.5.0
([#&#8203;134](https://redirect.github.com/rustic-rs/rustic_core/issues/134))

</details>

<details>
<summary>snapview/tungstenite-rs (tungstenite)</summary>

###
[`v0.24.0`](https://redirect.github.com/snapview/tungstenite-rs/blob/HEAD/CHANGELOG.md#0240)

[Compare
Source](https://redirect.github.com/snapview/tungstenite-rs/compare/v0.23.0...v0.24.0)

-   Raised MSRV to 1.63 to match `tokio-tungstenite`.
- Connecting to WSS URL without TLS features specified results in a
better error.
- Handshake will now flush after completion to be safe (works better
with buffered streams).

###
[`v0.23.0`](https://redirect.github.com/snapview/tungstenite-rs/blob/HEAD/CHANGELOG.md#0230)

[Compare
Source](https://redirect.github.com/snapview/tungstenite-rs/compare/v0.22.0...v0.23.0)

- Disable default features for `rustls` giving the user more
flexibility.

###
[`v0.22.0`](https://redirect.github.com/snapview/tungstenite-rs/blob/HEAD/CHANGELOG.md#0220)

[Compare
Source](https://redirect.github.com/snapview/tungstenite-rs/compare/v0.21.0...v0.22.0)

-   Make `url` optional.
-   Add a builder for convenient headers and subprotocols construction.
-   Update `rustls` dependency.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC),
Automerge - At any time (no schedule defined).

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

♻ **Rebasing**: Never, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/rustic-rs/rustic_scheduler).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzguOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiQS1kZXBlbmRlbmNpZXMiXX0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-dependencies Area: Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant