From 129ace10a83070b9d649daa445ac536e2da06986 Mon Sep 17 00:00:00 2001 From: Andrew Cantino Date: Sun, 3 Dec 2023 15:02:28 -0800 Subject: [PATCH] use a fixed version of autopilot --- Cargo.lock | 3 ++- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f65b951..cb0f234 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -107,7 +107,8 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "autopilot" version = "0.4.0" -source = "git+https://github.com/autopilot-rs/autopilot-rs#ae5263bfde2e9de1ff0a59c4db6a4a4e8aacb3b9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a2fd0359d0cd30b15419bcce7e6641a3cbe2046c612b3900216dc64bc989558" dependencies = [ "cocoa", "core-foundation", diff --git a/Cargo.toml b/Cargo.toml index a253722..ce71206 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ features = ["derive"] libc = "0.2" [target.'cfg(windows)'.dependencies] -autopilot = {git="https://github.com/autopilot-rs/autopilot-rs"} +autopilot = "0.4.0" [features] default = ["sqlite-bundled"]