From 31b0d44eee7dd9aba242128bde5ae67d891ae7d7 Mon Sep 17 00:00:00 2001 From: Kirottu Date: Thu, 11 May 2023 08:11:49 +0300 Subject: [PATCH] Switched to using a properly versioned version of `kidex-common` --- Cargo.lock | 3 ++- plugins/kidex/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9d9ae4d..d04abec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1081,7 +1081,8 @@ dependencies = [ [[package]] name = "kidex-common" version = "0.1.0" -source = "git+https://github.com/Kirottu/kidex#afcbf54b37dc47b914e0c8f873cb1f11c69674a7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9d161d39ea0b3247a56831cc370e0187f7ab587d43a1efa843ccc314a97e539" dependencies = [ "serde", "serde_json", diff --git a/plugins/kidex/Cargo.toml b/plugins/kidex/Cargo.toml index 97fed44..b5eaf27 100644 --- a/plugins/kidex/Cargo.toml +++ b/plugins/kidex/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib"] [dependencies] anyrun-plugin = { path = "../../anyrun-plugin" } -kidex-common = { git = "https://github.com/Kirottu/kidex", features = ["util"] } +kidex-common = { version = "0.1.0", features = ["util"] } abi_stable = "0.11.1" fuzzy-matcher = "0.3.7" open = "3.2.0"