aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Beasley <code@musicinmybrain.net>2025-10-20 19:28:36 +0100
committerGitHub <noreply@github.com>2025-10-20 11:28:36 -0700
commit5c07151fc5249a918afe76b9bfbac5dab17fc5ad (patch)
tree43e9e4e1ab504d302ec0f9d067104f14e08a2ca3
parentfeat: add import from PowerShell history (#2864) (diff)
downloadatuin-5c07151fc5249a918afe76b9bfbac5dab17fc5ad.zip
chore: update rusty_paseto and rusty_paserk (#2942)
<!-- 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 - [x] I am happy for maintainers to push small adjustments to this PR, to speed up the review cycle - [x] I have checked that there are no existing pull requests for the same thing
-rw-r--r--Cargo.lock13
-rw-r--r--crates/atuin-client/Cargo.toml4
2 files changed, 9 insertions, 8 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ea2bf20b..01781b47 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3925,9 +3925,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
[[package]]
name = "rusty_paserk"
-version = "0.4.0"
+version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "a1d3a81ecd341ee8abf4761350ecffe3518c284ed1626bbd58f5f4bd64c61d38"
+checksum = "b99c867582a6d5d0eb6dd394ce32b7d8e75e79a76cf532fba7b52c94b0ca4ae0"
dependencies = [
"argon2",
"base64 0.22.1",
@@ -3948,9 +3948,9 @@ dependencies = [
[[package]]
name = "rusty_paseto"
-version = "0.7.2"
+version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "05501841a4cac5c065cb6a501a62207c4c235e37d2882579a2505a2aa2837826"
+checksum = "a61ebc4c4e058565285d54a1134a4f9f5d951ef901194c79437f3ee4f2538e49"
dependencies = [
"base64 0.22.1",
"blake2",
@@ -3959,9 +3959,10 @@ dependencies = [
"ed25519-dalek",
"hex",
"iso8601",
- "rand_core 0.6.4",
+ "rand_core 0.9.3",
"ring",
- "thiserror 1.0.69",
+ "subtle",
+ "thiserror 2.0.16",
"time",
"zeroize",
]
diff --git a/crates/atuin-client/Cargo.toml b/crates/atuin-client/Cargo.toml
index 2ada400b..67069afe 100644
--- a/crates/atuin-client/Cargo.toml
+++ b/crates/atuin-client/Cargo.toml
@@ -56,8 +56,8 @@ generic-array = { version = "0.14", features = ["serde"] }
serde_with = "3.8.1"
# encryption
-rusty_paseto = { version = "0.7.0", default-features = false }
-rusty_paserk = { version = "0.4.0", default-features = false, features = ["v4", "serde"] }
+rusty_paseto = { version = "0.8.0", default-features = false }
+rusty_paserk = { version = "0.5.0", default-features = false, features = ["v4", "serde"] }
# sync
urlencoding = { version = "2.1.0", optional = true }