diff options
| author | Ellie Huxtable <ellie@atuin.sh> | 2026-01-27 16:20:25 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-27 16:20:25 -0800 |
| commit | f294c5bca990f684b59f217dd468a41b7ac83d0e (patch) | |
| tree | 4a2db9fd5c8d109124876c0eba9ba91e74618bac /Cargo.toml | |
| parent | fix: custom data dir test on windows (#3109) (diff) | |
| download | atuin-f294c5bca990f684b59f217dd468a41b7ac83d0e.zip | |
chore(deps): audit ssl deps (#3110)
<!-- Thank you for making a PR! Bug fixes are always welcome, but if
you're adding a new feature or changing an existing one, we'd really
appreciate if you open an issue, post on the forum, or drop in on
Discord -->
## Checks
- [ ] I am happy for maintainers to push small adjustments to this PR,
to speed up the review cycle
- [ ] I have checked that there are no existing pull requests for the
same thing
Diffstat (limited to '')
| -rw-r--r-- | Cargo.toml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -45,6 +45,7 @@ tracing = "0.1" sql-builder = "3" tempfile = { version = "3.19" } minijinja = "2.9.0" +rustls = { version = "0.23", default-features = false, features = ["ring", "std", "tls12"] } [workspace.dependencies.tracing-subscriber] version = "0.3" @@ -52,7 +53,7 @@ features = ["ansi", "fmt", "registry", "env-filter"] [workspace.dependencies.reqwest] version = "0.13" -features = ["json", "rustls"] +features = ["json", "rustls-no-provider"] default-features = false [workspace.dependencies.sqlx] |
