From 1baf3dfaf075fbf20bb528a79434245dbb7901f2 Mon Sep 17 00:00:00 2001 From: Kezi Date: Tue, 20 Aug 2024 23:24:26 +0200 Subject: [PATCH] use https for crc dependency, as github doesn't support ssh any more --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 01edddb..ea15e18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -283,17 +283,17 @@ dependencies = [ [[package]] name = "crc" -version = "2.0.1-alpha.0" -source = "git+ssh://git@github.com/mrhooray/crc-rs.git#747901f88620e360ced1c70eaec02383d0f36fe0" +version = "3.2.1" +source = "git+https://github.com/mrhooray/crc-rs.git#bb40d4e7c78938640fe4b8703ed43d5a407e3810" dependencies = [ "crc-catalog", ] [[package]] name = "crc-catalog" -version = "1.1.1" +version = "2.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403" +checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" [[package]] name = "crc32fast" diff --git a/Cargo.toml b/Cargo.toml index 6435684..9a09947 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ btleplug = "0.8" uuid = "0.8" futures = "0.3" tokio = {version = "1.10", features = ["rt", "macros", "rt-multi-thread"] } -crc = { git = "ssh://git@github.com/mrhooray/crc-rs.git" } +crc = { git = "https://github.com/mrhooray/crc-rs.git" } dither = "=1.3.7" # last version without nightly requirement image = "0.23" clap = "3.0.0-beta.4"