Merge pull request #3 from Kezii/patch-1

use https for crc dependency, as github doesn't support ssh any more
This commit is contained in:
Jan-Henrik 2024-08-21 09:31:36 +02:00 committed by GitHub
commit a771416288
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View file

@ -283,17 +283,17 @@ dependencies = [
[[package]] [[package]]
name = "crc" name = "crc"
version = "2.0.1-alpha.0" version = "3.2.1"
source = "git+ssh://git@github.com/mrhooray/crc-rs.git#747901f88620e360ced1c70eaec02383d0f36fe0" source = "git+https://github.com/mrhooray/crc-rs.git#bb40d4e7c78938640fe4b8703ed43d5a407e3810"
dependencies = [ dependencies = [
"crc-catalog", "crc-catalog",
] ]
[[package]] [[package]]
name = "crc-catalog" name = "crc-catalog"
version = "1.1.1" version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ccaeedb56da03b09f598226e25e80088cb4cd25f316e6e4df7d695f0feeb1403" checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
[[package]] [[package]]
name = "crc32fast" name = "crc32fast"

View file

@ -10,7 +10,7 @@ btleplug = "0.8"
uuid = "0.8" uuid = "0.8"
futures = "0.3" futures = "0.3"
tokio = {version = "1.10", features = ["rt", "macros", "rt-multi-thread"] } 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 dither = "=1.3.7" # last version without nightly requirement
image = "0.23" image = "0.23"
clap = "3.0.0-beta.4" clap = "3.0.0-beta.4"