summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"]