summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-04-14 23:21:51 +0200
committerandromeda <andromeda@lenovo>2026-04-14 23:21:51 +0200
commit8c0894e8eb1dcb73d8cc0c58eb8992931d41df0c (patch)
tree32455875842c651f7809cbc5cef8210d93c1b6cd
parentf32d5dd7aa1eb4b87c2cc6f49e3357fe46d18aa0 (diff)
update anki_bridge
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml10
2 files changed, 10 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a019b10..31ee415 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -12,9 +12,9 @@ dependencies = [
[[package]]
name = "anki_bridge"
-version = "0.10.0"
+version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0147ece4b52d85319796e80fe532eb345c1a6b5ad8e7bffe9cc99106e3a1b701"
+checksum = "ba6d89e6055f7dbf5f0a70c5c9dd34cf4b37e9ef867ff24f6ce696a02c0c3c85"
dependencies = [
"async-trait",
"maybe-async",
diff --git a/Cargo.toml b/Cargo.toml
index 2a5fb2a..6f167ee 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,13 @@ version = "0.1.0"
edition = "2024"
[dependencies]
-crossterm = { version = "0.29.0", default-features = false, features = ["events"] }
+[dependencies.crossterm]
+version = "0.29.0"
+default-features = false
+features = ["events"]
+
+# minor versions of this package have breaking changes :/
+# thus the exact versioning
[dependencies.anki_bridge]
-version = "0.10"
+version = "=0.10.2"
features = ["ureq_blocking"]