fix: use candle mirror
Some checks reported errors
continuous-integration/drone/push Build was killed
continuous-integration/drone Build was killed

This commit is contained in:
kieran 2024-10-15 12:46:02 +01:00
parent 8ce3f87dc0
commit 15fd199ff0
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941
2 changed files with 9 additions and 9 deletions

12
Cargo.lock generated
View File

@ -459,8 +459,8 @@ checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
[[package]] [[package]]
name = "candle-core" name = "candle-core"
version = "0.6.1" version = "0.7.2"
source = "git+https://github.com/huggingface/candle.git#c02b7c327297f25fc9cc60b8f39c9aa32e40ff21" source = "git+https://git.v0l.io/Kieran/candle.git#a01aa897991fbc3da2dfda568b4254f697fdd598"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"gemm", "gemm",
@ -479,8 +479,8 @@ dependencies = [
[[package]] [[package]]
name = "candle-nn" name = "candle-nn"
version = "0.6.1" version = "0.7.2"
source = "git+https://github.com/huggingface/candle.git#c02b7c327297f25fc9cc60b8f39c9aa32e40ff21" source = "git+https://git.v0l.io/Kieran/candle.git#a01aa897991fbc3da2dfda568b4254f697fdd598"
dependencies = [ dependencies = [
"candle-core", "candle-core",
"half", "half",
@ -493,8 +493,8 @@ dependencies = [
[[package]] [[package]]
name = "candle-transformers" name = "candle-transformers"
version = "0.6.1" version = "0.7.2"
source = "git+https://github.com/huggingface/candle.git#c02b7c327297f25fc9cc60b8f39c9aa32e40ff21" source = "git+https://git.v0l.io/Kieran/candle.git#a01aa897991fbc3da2dfda568b4254f697fdd598"
dependencies = [ dependencies = [
"byteorder", "byteorder",
"candle-core", "candle-core",

View File

@ -47,9 +47,9 @@ reqwest = "0.12.8"
libc = { version = "0.2.153", optional = true } libc = { version = "0.2.153", optional = true }
blurhash = { version = "0.2.1", optional = true } blurhash = { version = "0.2.1", optional = true }
ffmpeg-sys-the-third = { version = "2.0.0", features = ["default"], optional = true } ffmpeg-sys-the-third = { version = "2.0.0", features = ["default"], optional = true }
candle-core = { git = "https://github.com/huggingface/candle.git", version = "^0.6.1", optional = true } candle-core = { git = "https://git.v0l.io/Kieran/candle.git", version = "^0.7.2", optional = true }
candle-nn = { git = "https://github.com/huggingface/candle.git", version = "^0.6.1", optional = true } candle-nn = { git = "https://git.v0l.io/Kieran/candle.git", version = "^0.7.2", optional = true }
candle-transformers = { git = "https://github.com/huggingface/candle.git", version = "^0.6.1", optional = true } candle-transformers = { git = "https://git.v0l.io/Kieran/candle.git", version = "^0.7.2", optional = true }
clap = { version = "4.5.18", features = ["derive"], optional = true } clap = { version = "4.5.18", features = ["derive"], optional = true }
sqlx-postgres = { version = "0.8.2", optional = true, features = ["chrono", "uuid"] } sqlx-postgres = { version = "0.8.2", optional = true, features = ["chrono", "uuid"] }
clap_derive = { version = "4.5.18", optional = true } clap_derive = { version = "4.5.18", optional = true }