aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-client/src
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@atuin.sh>2026-01-27 16:20:25 -0800
committerGitHub <noreply@github.com>2026-01-27 16:20:25 -0800
commitf294c5bca990f684b59f217dd468a41b7ac83d0e (patch)
tree4a2db9fd5c8d109124876c0eba9ba91e74618bac /crates/atuin-client/src
parentfix: custom data dir test on windows (#3109) (diff)
downloadatuin-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 'crates/atuin-client/src')
-rw-r--r--crates/atuin-client/src/api_client.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/atuin-client/src/api_client.rs b/crates/atuin-client/src/api_client.rs
index 86452d50..aeca6492 100644
--- a/crates/atuin-client/src/api_client.rs
+++ b/crates/atuin-client/src/api_client.rs
@@ -11,6 +11,7 @@ use reqwest::{
use atuin_common::{
api::{ATUIN_CARGO_VERSION, ATUIN_HEADER_VERSION, ATUIN_VERSION},
record::{EncryptedData, HostId, Record, RecordIdx},
+ tls::ensure_crypto_provider,
};
use atuin_common::{
api::{
@@ -59,6 +60,7 @@ pub async fn register(
email: &str,
password: &str,
) -> Result<RegisterResponse> {
+ ensure_crypto_provider();
let mut map = HashMap::new();
map.insert("username", username);
map.insert("email", email);
@@ -91,6 +93,7 @@ pub async fn register(
}
pub async fn login(address: &str, req: LoginRequest) -> Result<LoginResponse> {
+ ensure_crypto_provider();
let url = make_url(address, "/login")?;
let client = reqwest::Client::new();
@@ -114,6 +117,7 @@ pub async fn login(address: &str, req: LoginRequest) -> Result<LoginResponse> {
pub async fn latest_version() -> Result<Version> {
use atuin_common::api::IndexResponse;
+ ensure_crypto_provider();
let url = "https://api.atuin.sh";
let client = reqwest::Client::new();
@@ -197,6 +201,7 @@ impl<'a> Client<'a> {
connect_timeout: u64,
timeout: u64,
) -> Result<Self> {
+ ensure_crypto_provider();
let mut headers = HeaderMap::new();
headers.insert(AUTHORIZATION, format!("Token {session_token}").parse()?);